Oracle RMAN Recovery [message #530540] |
Wed, 09 November 2011 00:47 |
|
umeshgupta1987
Messages: 4 Registered: November 2011
|
Junior Member |
|
|
Environment:
oracle 10.2.0.1.0
Windows XP
I have taken the RMAN Full database backup through the following command.
My database is in no archivelog mode.
AT RMAN prompt
Shutdown immediate;
Startup mount;
run
{
allocate channel c01 device type disk format 'd:\rman_bkp\test_%U';
allocate channel c02 device type disk format 'd:\rman_bkp\test_%U';
backup full database tag 'full_bkup_test_081111';
backup current controlfile;
backup spfile;
release channel c01;
release channel c02;
}
Now i have deleted my all controlfile and spfile/Pfile from the database.
So how can i recover my SPfile and controlfile??
Please Suggest.!!
i do not have autobackup on of SPfile/Controlfile.
Regards
Umesh
|
|
|
|
|
Re: Oracle RMAN Recovery [message #530552 is a reply to message #530549] |
Wed, 09 November 2011 01:42 |
|
Michel Cadot
Messages: 68732 Registered: March 2007 Location: Saint-Maur, France, https...
|
Senior Member Account Moderator |
|
|
Quote:Suggest..!!
Read your backup logs.
And for the future name the backups of your control file and spfile with a specific name.
Or better activate autobackup.
Most likely the 6MB files are control file backups and the 96KB ones are spfile backups.
And next time, use DOS and copy and paste the result in TEXT mode. No need to waste space
and network bandwidth for this.
Regards
Michel
[Updated on: Wed, 09 November 2011 01:42] Report message to a moderator
|
|
|
|
|
|
|