Scheduler Flashcards

1
Q

What view would show you the list of scheduled jobs?

A

DBA_SCHEDULER_JOBS

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What role is required for managing the scheduler?

A

SCHEDULER_ADMIN role

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Job States

A

Disabled - not scheduled
Retry Scheduled - failed but retry scheduled
Scheduled -
Running
Completed - done and not scheduled to run again
Broken - max failures reached, wont retry until fixed
Failed - all retries have failed regardless of max retries
Remote - running remotely
Succeeded -
Chain_Stalled - as a result of a dependency issue

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What package allows working with the scheduler?

A

DBMS_SCHEDULER
For exmaple:
exec DBMS_SCHEDULER.CREATE_JOB_CLASS
(job_class_name=’thisjob’);

How well did you know this?
1
Not at all
2
3
4
5
Perfectly