053446

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?
A. The priority of the lne_job1 job would be set to 1.
B. The lne_job1 job would be executed synchronously.
C. The lne_job1 job would run immediately in the users current session.
D. The lne_job1 job would retain its current priority.
E. The job will immediately take priority over all running jobs.

  Executing the SET_ATTRIBUTE procedure with the job_priority attribute changes the priority of a job,with 1 being the highest priority and 5 the lowest.This procedure does not give the job priority over running jobs with the same priority(1).

原文地址:https://www.cnblogs.com/Babylon/p/7833409.html