Update job log when a job completes
Spawn and remove job slaves
Write/read job info to/from memory cache
Query job table
Pass job information to job slaves
第1题:
A. The job is enabled by default after creation
B. The job is automatically dropped after the end date
C. The job executes with the privileges of the user SYS
D. The globalization environment that exists at the time of the job creation prevails at the job runs
第2题:
While creating a job class using the DBMS_SCHEDULER package, you set the logging level to LOGGING_RUNS. What would be the impact of this setting?()
第3题:
Consider the following code snippet: BEGIN DBMS_SCHEDULER.SET_ATTRIBUTE ( name => ,,lne_job1, attribute => ,,job_priority, value => 1); END; / If this code were executed, which of the following statements would be true?()
第4题:
When setting arguments for a job, which procedure do you use for types that cannot be implicitly converted to and from a VARCHAR2 datatype?()
第5题:
You want to view the name of a program associated with a job for making some changes to the program. Which view will you query to find the name of the program associated with the job?()
第6题:
User SCOTT executes the following command on the EMP table but has not issued COMMIT, ROLLBACK,or any data definition language (DDL) command: SQL> SELECT job FROM emp 2 WHERE job=’CLERK’ FOR UPDATE OF empno; SCOTT has opened another session to work with the database. Which three operations would wait when issued in SCOTT’s second session?()
第7题:
列出EMP表中,从事每个工种(JOB)的员工人数()
第8题:
SET_JOB_ARGUMENT_VALUE
SET_JOB_VALUE_ANYDATA
SET_JOB_ANYDATA_VALUE
SET_SPECIAL_JOB_VALUE
SET_JOB_ANYTYPE_VALUE
第9题:
DBA_SCHEDULER_JOB_RUN_DETAILS
DBA_SCHEDULER_RUNNING_JOBS
DBA_SCHEDULER_JOBS
DBA_SCHEDULER_JOB_LOG
第10题:
Update job log when a job completes
Spawn and remove job slaves
Write/read job info to/from memory cache
Query job table
Pass job information to job slaves
第11题:
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.
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.
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.
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.
第12题:
Increasing the priority of the job class to which the job belongs
Increasing the job's relative priority within the Job class to which it belongs
Increasing the resource allocation for the consumer group mapped to the scheduler job's job class within the plan mapped to the scheduler window
Moving the job to an existing higher priority scheduler window with the same schedule and duration
Increasing the value of the JOB_QUEUE_PROCESSES parameter
Increasing the priority of the scheduler window to which the job belongs
第13题:
A.select job from emp;
B.select job,count(*) from emp;
C.select distinct job,count(*) from emp;
D.select job,count(*) from emp group by job;
E.select job,sum(empno) from emp group by job;
第14题:
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?()
第15题:
When a job exceeds the date specified in its END_DATE attribute, which of the following will happen?()
第16题:
Which of the following tasks is not performed by the job coordinator?()
第17题:
You notice that the elapsed time for an important database scheduler Job is unacceptably long. The job belongs to a scheduler job class and window. Which two actions would reduce the job's elapsed time?()
第18题:
William is creating a job class. William specifies the LOGGING_FULL setting for the LOGGING_LEVEL attribute at the time of job class creation. What is the impact of using this setting?()
第19题:
Oracle Scheduler would write detailed information to the job log for each run of each job in the job class.
Oracle Scheduler would write detailed information to the job log for the first run of each job in the job class.
Oracle Scheduler would write detailed information to the job log for each run of only the first job in the job class.
Oracle Scheduler would write detailed information for all operations performed on all jobs in the job class.
第20题:
SET_JOB_ARGUMENT_VALUE
SET_JOB_VALUE_ANYDATA
SET_JOB_ANYDATA_VALUE
SET_SPECIAL_JOB_VALUE
SET_JOB_ANYTYPE_VALUE
第21题:
EXECUTE DBMS_SCHEDULER.PURGE_LOG(log_history => 5, job_name => ’JOB1’);
EXECUTE DBMS_SCHEDULER.PURGE_LOG( log_history => 5, job_name => ’JOB_LOG’);
EXECUTE DBMS_SCHEDULER.PURGE_LOG( log_history => 5, which_log => ’JOB1’);
EXECUTE DBMS_SCHEDULER.PURGE_LOG( log_history => 5, which_log =>’JOB_LOG’);
第22题:
Update job log when a job completes
Spawn and remove job slaves
Write/read job info to/from memory cache
Query job table
Pass job information to job slaves
第23题:
The priority of the lne_job1 job would be set to 1.
The lne_job1 job would be executed synchronously.
The lne_job1 job would run immediately in the users current session.
The lne_job1 job would retain its current priority.
The job will immediately take priority over all running jobs.
第24题:
select job from emp;
select job,count(*) from emp;
select distinct job,count(*) from emp;
select job,count(*) from emp group by job;
select job,sum(empno) from emp group by job;