Disableing DBMS_SCHEDULER queues when cloning
I am creating a clone of my production database using RMAN and don't want the jobs in the DBMS_SCHEDULER to start once the clone is done. This was easy to do with DBA_JOBS by just setting JOB_QUEUE_PROCESSES=0, but I can't seam find a way to keep the jobs in DBMS_SCHEDULER from starting. I have tried using DBMS_SCHEDULER.DISABLE immediately upon completing the clone, but jobs have already started running.
Any ideas??
--Bruce