This topic has been archived. It cannot be replied.
-
工作学习 / 学科技术讨论 / how to restore a oracle database as new database name?
-whygh(studing);
2008-7-25
{793}
(#4579278@0)
-
when you do backup, in command line try to do this, supposed the username=abc(in oracle db name=user name)backup:
exp abc/password@dbname file=mybackup.dmp compress=y
first create a username: like def, you can use the admin console do that:
restore:
imp abc/password@dbname file=mybackup.dmp fromuser=abc touser=def
hope this help
-thunderbolt(孙悟空);
2008-7-27
{235}
(#4581237@0)