If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
I need to create a UAT environment. Only one server is available to me and I already have the development database on it (say Mydb), so I have to create the UAT database with another name (say Mydb_UAT).
What is the simplest way to do it ?
Can I do it using 'load database' command ? In the manual I cannot find the syntax to load a database with a different name.
Hi,
U can create a database by using the create database with load option and when u create a database check Mydb size and create one "Mydb_UAT" with similar size and load the database mydb in mydb_UAT.
suppose if your database name dump name is /backup/mydb.dmp then u can load as
1>load database mydb_UAT from "backup/mydb.dmp" 2>go