RMAN hot backup no archive logs [message #392908] |
Thu, 19 March 2009 11:13 |
lotusdeva
Messages: 201 Registered: March 2005
|
Senior Member |
|
|
I have a disk space issue with my PROD db. I have backed up half of the archive logs to tape and deleted them. I now need to backup db online (hot). If I do backup database plus archievelog, I obvioulsy get errors:
ORA-19625: error identifying file /arc/prod/prod_1_11166.arc
ORA-27037: unable to obtain file status
If I just use backup database command in RMAN, would I be able to restore if I have my archives on tape?
|
|
|
|
|
Re: RMAN hot backup no archive logs [message #393960 is a reply to message #392908] |
Wed, 25 March 2009 03:41 |
pokhraj_d
Messages: 117 Registered: December 2007
|
Senior Member |
|
|
Hi,
You can run the folowing command;-
------------
RMAN> run
{allocate channel ch1 type disk;
crosscheck archivelog all;
backup database plus archivelog;
release channel ch1;
}
Please let me know it working or not.
Pokhraj.
|
|
|