Using Rman in Windown Client to Backup Oracle Server 10g in AIX, save to disk in Window (merged 3) [message #327366] |
Mon, 16 June 2008 04:25 |
trongluc
Messages: 5 Registered: June 2008
|
Junior Member |
|
|
Hi all!
I have a oracle server 10g Which running in AIX 5.3. Now, I want using RMAN to backup data for security. So, I use RMAN script run on Windown (file .bat) and data save into disk on window. but, I have a problem : "Server not reliaze the path". pls, help me config RMAN script to backup with the context above
I give you my script, Thank alot
run {
sql 'alter system archive log current';
allocate channel db01D type disk;
backup
incremental level 0
tag 'BKFull'
format 'F:\oracle\Data\DataBase_Full_%d%s%t%p'
filesperset 6
(database include current controlfile);
sql 'alter system archive log current';
backup
format 'F:\oracle\Data\ARC_%d%s%t%p'
archivelog all delete input;
backup
format 'F:\oracle\Data\CONTROL_%d%s%t%p'
current controlfile ;
release channel db01D;
}
|
|
|
Using Rman in Windown Client to Backup Oracle Server 10g in AIX, save to disk in Window [message #327367 is a reply to message #327366] |
Mon, 16 June 2008 04:26 |
trongluc
Messages: 5 Registered: June 2008
|
Junior Member |
|
|
Hi all!
I have a oracle server 10g Which running in AIX 5.3. Now, I want using RMAN to backup data for security. So, I use RMAN script run on Windown (file .bat) and data save into disk on window. but, I have a problem : "Server not reliaze the path". pls, help me config RMAN script to backup with the context above
I give you my script, Thank alot
run {
sql 'alter system archive log current';
allocate channel db01D type disk;
backup
incremental level 0
tag 'BKFull'
format 'F:\oracle\Data\DataBase_Full_%d%s%t%p'
filesperset 6
(database include current controlfile);
sql 'alter system archive log current';
backup
format 'F:\oracle\Data\ARC_%d%s%t%p'
archivelog all delete input;
backup
format 'F:\oracle\Data\CONTROL_%d%s%t%p'
current controlfile ;
release channel db01D;
}
|
|
|
Using Rman in Windown Client to Backup Oracle Server 10g in AIX, save to disk in Window [message #327369 is a reply to message #327366] |
Mon, 16 June 2008 04:27 |
trongluc
Messages: 5 Registered: June 2008
|
Junior Member |
|
|
Hi all!
I have a oracle server 10g Which running in AIX 5.3. Now, I want using RMAN to backup data for security. So, I use RMAN script run on Windown (file .bat) and data save into disk on window. but, I have a problem : "Server not reliaze the path". pls, help me config RMAN script to backup with the context above
I give you my script, Thank alot
run {
sql 'alter system archive log current';
allocate channel db01D type disk;
backup
incremental level 0
tag 'BKFull'
format 'F:\oracle\Data\DataBase_Full_%d%s%t%p'
filesperset 6
(database include current controlfile);
sql 'alter system archive log current';
backup
format 'F:\oracle\Data\ARC_%d%s%t%p'
archivelog all delete input;
backup
format 'F:\oracle\Data\CONTROL_%d%s%t%p'
current controlfile ;
release channel db01D;
}
|
|
|
|
|
|
|
|