Horje
oracle list next running jobs Code Example
oracle list next running jobs
SELECT OWNER, JOB_NAME, JOB_TYPE, LAST_START_DATE,
       LAST_RUN_DURATION, NEXT_RUN_DATE, STATE,
       REPEAT_INTERVAL
FROM DBA_SCHEDULER_JOBS
WHERE JOB_SUBNAME IS NULL
  AND NEXT_RUN_DATE IS NOT NULL
  AND STATE = 'SCHEDULED'
  AND NEXT_RUN_DATE < trunc(sysdate) + 1
ORDER BY NEXT_RUN_DATE;




Sql

Related
check mysql timezone Code Example check mysql timezone Code Example
how to see logical reads in sql server Code Example how to see logical reads in sql server Code Example
cannot return non-composite value from function that returns composite type Code Example cannot return non-composite value from function that returns composite type Code Example
oracle next run dates Code Example oracle next run dates Code Example
set statiscis on in sql server Code Example set statiscis on in sql server Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7