rman backup on remote machine [message #183315] |
Thu, 20 July 2006 06:20 |
abs_amit
Messages: 59 Registered: January 2006 Location: delhi
|
Member |
|
|
Hi all,
i have rman catalog backup on server "catdb" 198.162.7.12
and target database on "proddb" 198.162.7.1
i am connected with catdb with telnet and running rman on this machine
now i want to take bakup of proddb on
machine-- catdb
location-- /catdbora1/backup/
while i am running simple command
run
{
allocate channel c1 type disk format '/catdbora1/backup/%U.bak';
backup datafile 1;
}
------------------------
It gives error can't create file
How can i do this ????????
Thanks to all in advance.
|
|
|
Re: rman backup on remote machine [message #183466 is a reply to message #183315] |
Fri, 21 July 2006 01:51 |
abs_amit
Messages: 59 Registered: January 2006 Location: delhi
|
Member |
|
|
Hi Team,
I got the solution.....
simple you can map a directory /catdbora1/backup/
to the directory of proddb like :- /proddb1/backup/
and you can take backup on /proddb1/backup/
run
{
allocate channel c1 type disk format '/proddb1/backup/%U.bak'
maxpiecesize=4g;
backup database;
}
any way thanks to all..
|
|
|