Multiple choice technology databases

what is the view that provides all schedules ?

  1. all_scheduler_schedules

  2. all_scheduler_schedule

  3. all_schedule_schedules

  4. all the above

  5. None

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

ALL_SCHEDULER_SCHEDULES is the correct view that provides all schedules accessible to the current user in Oracle Scheduler. Option B incorrectly uses singular 'schedule', and option C uses 'all_schedule_schedules' which is not a valid view name. Option D is incorrect since only option A is valid.

AI explanation

ALL_SCHEDULER_SCHEDULES is the actual Oracle data dictionary view that lists all schedule objects (created via DBMS_SCHEDULER.CREATE_SCHEDULE) accessible to the current user, including schedule name, start/end dates, and repeat interval. The other options are misspelled or non-existent view names (Oracle's naming convention is consistently ALL_SCHEDULER_*, not ALL_SCHEDULE_* or singular SCHEDULE), so only the properly named view is valid.