Search
 
SCRIPT & CODE EXAMPLE
 

SQL

how to check all scheduled jobs in oracle

select owner as schema_name,
       job_name,
       job_style,
       case when job_type is null 
                 then 'PROGRAM'
            else job_type end as job_type,  
       case when job_type is null
                 then program_name
                 else job_action end as job_action,
       start_date,
       case when repeat_interval is null
            then schedule_name
            else repeat_interval end as schedule,
       last_start_date,
       next_run_date,
       state
from sys.all_scheduler_jobs
order by owner,
         job_name;
Code has been copied
Comment

PREVIOUS NEXT
Code Example
Sql :: psql view enum values 
Sql :: search for tables with name postgresql 
Sql :: postgres read table structure 
Sql :: MySQL - Enabling the Event Scheduler 
Sql :: convert epoch to date in sql server 
Sql :: mysql not supported auth mode 
Sql :: postgres connection string 
Sql :: how to import database in mysql by cmd 
Sql :: copy column data to another column sql with creating slugs 
Sql :: mysql count newlines in field 
Sql :: pyodbc connect to sql server 
Sql :: set sequence value oracle 
Sql :: describe table mysql 
Sql :: oracle list invalid password logon denied 
Sql :: sqlite3 how to get column names of a table 
Sql :: mysql show foreign keys 
Sql :: ordering by issue with 4 digit numbers in sql 
Sql :: monthname sql 
Sql :: sql server utc to local 
Sql :: postgresql select as and fwhwere by this field 
Sql :: create table sql server auto increment primary key 
Sql :: postgresql show owner of database 
Sql :: sql join exists 
Sql :: sql primary key with multiple columns 
Sql :: sql server loop over query 
Sql :: mysql error codeigniter 
Sql :: how to delete table in mysql 
Sql :: psql import backup file for windows 
Sql :: remove transient options sql wordpress 
Sql :: PL SQL MODIFY COLUMN NME 
ADD CONTENT
Topic
Content
Source link
Name
9+8 =