Operating System - HP-UX
1753759 Members
4868 Online
108799 Solutions
New Discussion юеВ

Re: RMAN needs to resynchronized

 
SOLVED
Go to solution
pat phillips
Occasional Advisor

RMAN needs to resynchronized

Dear All,

I need to resync rman but instead of using the catalog I am using the control file, can anyone tell me the syntax to completed this.

Regards,
Pat
3 REPLIES 3
Brian Crabtree
Honored Contributor
Solution

Re: RMAN needs to resynchronized

Login to the database using the rman command, and run:

change archivelog all validate;

Brian
Indira Aramandla
Honored Contributor

Re: RMAN needs to resynchronized

Hi Pat,

For Oracle 8 use:
RMAN> Change Archivelog All Validate;

For Oracle 8i use:
RMAN> Change Archivelog All; Crosscheck;

For Oracle 9i:
RMAN> crosscheck archivelog all;


IA

Never give up, Keep Trying
pat phillips
Occasional Advisor

Re: RMAN needs to resynchronized

Thanks for the help.