set pages 999 set linesize 200 col owner for a14 col job_name for a25 col job_action for a40 col program_name for a30 col start_date for a16 col repeat_interval for a10 col state for a10 select owner, job_name, JOB_ACTION, program_name, TO_CHAR(start_date, 'DD.MM.YYYY HH24:MI') start_date, TO_CHAR(last_start_date, 'DD.MM.YYYY HH24:MI') last_start_date, SCHEDULE_TYPE, repeat_interval from dba_scheduler_jobs where enabled='TRUE' /