Duplicate schema on the database

Community ForumCategory: DatabaseDuplicate schema on the database
matheusdba Staff asked 3 years ago

How can I duplicate an schema on the database?

1 Answers
matheusdba Staff answered 3 years ago

A simple way is to use datapump for this. You can even directly use impdp with a databaselink to the own database to do the “close”, like:

impdp system/manager schemas=A remap_schema=A:B network_link=MY_OWN_DB

Note that if you use dblink no parallel will be possible. In some cases it will be faster if you do expdp to a dumpfile with parallelism and then import it again with impdp in parallel too.