单项选择题
You want to purge job entries older than 5 days from the job log. You do not want to purge window log entries. Which command will you use to accomplish this task?()
A. EXECUTE DBMS_SCHEDULER.PURGE_LOG(log_history => 5, job_name => ’JOB1’);
B. EXECUTE DBMS_SCHEDULER.PURGE_LOG( log_history => 5, job_name => ’JOB_LOG’);
C. EXECUTE DBMS_SCHEDULER.PURGE_LOG( log_history => 5, which_log => ’JOB1’);
D. EXECUTE DBMS_SCHEDULER.PURGE_LOG( log_history => 5, which_log =>’JOB_LOG’);
相关考题
-
单项选择题
Yoursystemperformsheavytransactionprocessingbetween8:00A.M.and5:00P.M.butrunsbatchprocessingandreportsafterthat.Youdecidetocreateaseparateresourceplantogovernresourceallocationforeachtimeperiod.Whichschedulerobjectwillyouusetoswitchautomaticallybetweenthetworesourceplans?()
A. Window
B. Program
C. Job_Class
D. Window group -
单项选择题
You executed the following code: BEGIN DBMS_SCHEDULER.SET_ATTRIBUTE ( NAME => ’JOB_A’, ATTRIBUTE => ’JOB_PRIORITY’, VALUE => 7); END; / After analyzing the above code, what conclusion will you draw?()
A. The code will be executed successfully.
B. The code will not be executed successfully because the value of the VALUE parameter must be 1, 2, or 3.
C. The code will not be executed successfully because the value of the VALUE parameter must range between 1 and 5.
D. The code will not be executed successfully because no SET_ATTRIBUTE procedure exists in the DBMS_SCHDULER package. -
单项选择题
Williamiscreatingajobclass.WilliamspecifiestheLOGGING_FULLsettingfortheLOGGING_LEVELattributeatthetimeofjobclasscreation.Whatistheimpactofusingthissetting?()
A. Detailed information regarding the first run of each job in the class will be written in the job log, and every operation performed on the job class will be logged.
B. Detailed information regarding each run of only the first job in the class will be written in the job log, and every operation performed on the job class will be logged.
C. Detailed information regarding each run of each job in the class will be written in the job log, and every operation performed on the job class will be logged.
D. Detailed information regarding each run of each job in the class will be written in the job log, but operations performed on the job class will not be logged.
