RMAN fails doing hot backup [message #162077] |
Wed, 08 March 2006 10:08 |
toshidas2000
Messages: 120 Registered: November 2005
|
Senior Member |
|
|
RMAN-03026: error recovery releasing channel resources
RMAN-08031: released channel: c1
RMAN-08031: released channel: c2
RMAN-08031: released channel: c3
RMAN-08031: released channel: c4
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-06004: ORACLE error from recovery catalog database: ORA-03113: end-of-file on communication channel
RMAN-06097: text of failing SQL statement: begin dbms_rcvcat . lockForckpt ; end ;
RMAN-06099: error occurred in source file: krmk.pc, line: 2121
|
|
|
Re: RMAN fails doing hot backup [message #162129 is a reply to message #162077] |
Wed, 08 March 2006 20:51 |
alexzeng
Messages: 133 Registered: August 2005 Location: alexzeng.wordpress.com
|
Senior Member |
|
|
There are two ways make this out.
1. To give out more informations and let's help you. For example, rman version, database version and your commands
2. Search on metalink.
Alex zeng |Skpye me: hans9zeng
|
|
|
Re: RMAN fails doing hot backup [message #162254 is a reply to message #162129] |
Thu, 09 March 2006 07:18 |
toshidas2000
Messages: 120 Registered: November 2005
|
Senior Member |
|
|
Target database version 8.1.7.4.0
RMAN Executable 8.1.7.4.0
Catalog Database version 10.1.0.4.0
rman target / catalog userid/password@catalog trace=/backup/rman.log
<< EOF > /dev/null
# Hot database level 0 whole backup
run {
allocate channel c1 type disk format /backup/fdb_%d_%s_%p';
allocate channel c2 type disk format /backup/fdb_%d_%s_%p';
allocate channel c3 type disk format '/backup/fdb_%d_%s_%p';
allocate channel c4 type disk format '/backup/fdb_%d_%s_%p';
backup (database include current controlfile);
sql 'alter system archive log current';
backup
format '/backup/al_%s_%p_%t'
(archivelog all);
release channel c1;
release channel c2;
release channel c3;
release channel c4;
}
exit;
EOF
|
|
|
Re: RMAN fails doing hot backup [message #162257 is a reply to message #162254] |
Thu, 09 March 2006 07:23 |
girish.rohini
Messages: 744 Registered: April 2005 Location: Delhi (India)
|
Senior Member |
|
|
Ora-03113 says:
Quote: | ORA-03113: end-of-file on communication channel
Cause: An unexpected end-of-file was processed on the communication channel. The problem could not be handled by the Net8 two-task software. This message could occur if the shadow two-task process associated with a Net8 connect has terminated abnormally, or if there is a physical failure of the interprocess communication vehicle, that is, the network or server machine went down.
In addition, this message could occur when any of the following statements/commands have been issued:
* ALTER SYSTEM KILL SESSION ... IMMEDIATE
* ALTER SYSTEM DISCONNECT SESSION ... IMMEDIATE
* SHUTDOWN ABORT/IMMEDIATE/TRANSACTIONAL
Action: If this message occurs during a connection attempt, check the setup files for the appropriate Net8 driver and confirm Net8 software is correctly installed on the server. If the message occurs after a connection is well established, and the error is not due to a physical failure, check if a trace file was generated on the server at failure time. Existence of a trace file may suggest an Oracle internal error that requires the assistance of Oracle Support Services.
|
Check the aforesaid points & do let us know your observations on same.
--Girish
|
|
|
|