DBAsupport.com Forums - Powered by vBulletin
Results 1 to 5 of 5

Thread: RMAN still running

Threaded View

  1. #1
    Join Date
    Jul 2006
    Posts
    195

    RMAN still running

    Once a day, we issue the following query through cron to see if
    RMAN is still running.


    select operation,OBJECT_TYPE,ROW_TYPE from $RMAN_STATUS where status='RUNNING' and OPERATION='BACKUP' and OBJECT_TYPE !='ARCHIVELOG';


    On some systems, when a full backup is in progress this query sees that a previous instance of RMAN is still running and reports it as
    an error when in fact its not because the DB is so big and take a long time to backup.

    Is there some table I can query where if I provide a tag for my full backup (ie tag=full_backup) or some other information I can look
    to see if that tag is still being backed up. This would be very equivelant to providing a job name to expdp and seeing if that job_name is active

    I was considering doing a select count... but that would not work as
    we often clone DB's and I beleive this will bring out the same error.


    Thanks to all who answer
    Last edited by BeefStu; 12-27-2010 at 02:57 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width