Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

RMAN backup problems

Status
Not open for further replies.

du365

Programmer
Sep 11, 2003
2
US
Hey guys, I need help on this.

I am using Oracle9i on Windows XP

I was using RMAN to backup my database in archive log mode and enter this command:

RMAN> run
2> {
3> allocate channel ch1 type disk;
4> backup database format ‘db_%u_%d_%c_%s’;
5> backup format ‘log_t%t_s%s_p%p’
6> (archivelog all);
7> }

Once I typed this in, I received this error message:

released channel: ORA_DISK_1
allocated channel: ch1
channel ch1: sid=9 devtype=DISK

Starting backup at 28-MAR-04
channel ch1: starting full datafile backupset
channel ch1: specifying datafile (s) in backupset
channel ch1: starting piece 1 at 28-MAR-04

RMAN-00571: ===================================================
RMAN-00569: ========ERROR MESSAGE STACK FOLLOWS=============
RMAN-00571: ===================================================
RMAN-00579: the following error occurred at 03/28/2004 19:02:03
RMAN-03007: retryable error occurred during execution of command: backup
RMAN-12004: unhandled exception during command execution on channel ch1
RMAN-10035: exception raised in RPC: ORA-19504: failed to create file “db_4rfhqg98_RACLS_1_155”
ORA-27044: unable to write the header block of file
OSD-04008: Writefile() failure, unable to write to file
O/S-ERROR: (OS 112) There is not enough space on the disk.
RMAN-10031: ORA-19624 occurred during call to DBMS_BACKUP_RESTORE.BACKUPPIECECREATE


I need help in fixing this problem I have, please advise.

Thank you
du365
 
Hey,
your error messages are quite self-explaining;
look at this one:
O/S-ERROR: (OS 112) There is not enough space on the disk.
This means that RMAN hasn't got enough space to write to.
So you will have to:
either delete some unneeded files
or add more disk space.
hth
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top