"how to export-import database in oracle 11g(application express edition)? [closed]" Code Answer

3

for a full database export/import use

exp user@db full=y file=path_to_dumpfile
imp user@db full=y file=path_to_dumpfile

the user must have exp_full_database resp imp_full_database role (or something equivalent, like dba). db is your database (e.g. xe, if you have expreess edition)

By Elad Weiss on June 26 2022

Answers related to “how to export-import database in oracle 11g(application express edition)? [closed]”

Only authorized users can answer the Search term. Please sign in first, or register a free account.