Well, to perform these tasks, ORACLE provides import and export commands.
If you want to create a replica of ur database, create a dump(.dmp) using exp command
exp file=(location where dump is to be created) Log=(location where log is to be created) owner=(user whose dump is being exported)
Now to import this dump into a new user:
imp file=(location where dump is kept) fromuser=(user whose dump is being exported) touser=(user where dump is being imported)
There u go... The database gets created successfully.
No comments:
Post a Comment