OCP - 1Z0 - 053 - V13.02 - 276 문제
SQL> EXECUTE
DBMS_WORKLOAD_REPOSITORY.CREATE_BASELINE_TEMPLATE(START_TIME=>
TO_TIESTAMP(SYSDATE+2),
END_TIME=>TO_TIMESTAMP(SYSDATE+10),
BASELINE_NAME=>'Mybase4',
TEMPLATE_NAME=>'Mytemp4',
EXPIRATION=>NULL);
Which statement is true about the effect of the above command?
A. It creates a baseline template that never expires.
B. It produces an error because no snapshot information is provided to create the baseline.
C. It creates a baseline template that expires after the Automatic Workload Repository (AWR) retention period.
D. It creates a repeating baseline template that repeats after the Automatic Workload Repository (AWR) retention period.
Answer: A
답 해석:
참고:http://docs.oracle.com/cd/E11882_01/appdev.112/e40758/d_workload_repos.htm#ARPLS69131
Parameters
Table 162-24 CREATE_BASELINE_TEMPLATE Procedure Parameters
Parameter
Description
start_time
Start Time for the baseline to be created'
end_time
End Time for the baseline to be created
baseline_name
Name of baseline to be created
template_name
Name for the template
expiration
Expiration in number of days for the baseline. If
NULL
, then expiration is infinite, meaning do not drop baseline ever. Defaults to NULL
dbid
Database Identifier for baseline. If
NULL
, this takes the database identifier for the local database. Defaults to NULL
. day_of_week
Day of week that the baseline should repeat on. Specify one of the following values:
SUNDAY
, MONDAY
, TUESDAY
, WEDNESDAY
, THURSDAY
, FRIDAY
, SATURDAY
. hour_in_day
Value of 0-23 to specify the Hour in the Day the baseline should start
duration
Duration (in number of hours) after hour in the day that the baseline should last
baseline_name_prefix
Name for baseline prefix. When creating the baseline, the name of the baseline will be the prefix appended with the date information.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.