Oracle Systems DBA Reference

Database, UNIX, etc. @ 15zips

Create a DBMS_JOB

–schedules this job to run immediately and then every hour after that
DECLARE
JobNo dba_jobs.job%TYPE;
BEGIN
DBMS_JOB.SUBMIT (
job => JobNo,
what => ‘begin SESSIONS_RM(minutes=>180); end;’,
next_date => SYSDATE,
interval => ‘SYSDATE + 1/24’);
COMMIT;
END;
/

Comments are currently closed.