Target Database RMAN Backup

What are the steps required to enable the RMAN backup for a target database?

Questions by ravindra k

Showing Answers 1 - 2 of 2 Answers

anuradhad

  • Feb 24th, 2009
 

Steps required for RMAN

1)create a user to hold the recovery catalog
2)Grant connect,resource,recovery_catalog_owner to the user
3)Create recover catalog
4)Register database.Each database to be backed up by RMAN must be registered

  Was this answer useful?  Yes

bapiora

  • Jun 29th, 2009
 

Open a RMAN session and connect with target database, if you follow standalone command method just issue BACKUP DATABASE command its allocates channel and do the backup, but if you follow batch command method to do sort of jobs in one issue then you allocate channel within run block and do your RMAN backup like

  Run
{
  allocate channel c1 type disk;

 backup database

};

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions