问题
I am beginner in Oracle 11g. I have created a database in oracle 11g(Application Express).
I want to export this database with all data(whole workspace) and import this to another computer where I already have installed Oracle.Is there any way to export-import the whole workspace in oracle 11g application express?
回答1:
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)
来源:https://stackoverflow.com/questions/22626970/how-to-export-import-database-in-oracle-11gapplication-express-edition