- Export full database
- Example of Exporting Schemas
- Exporting Individual Tables
- Using Import Utility
- IMP KEYWORD=value or KEYWORD=(value1,value2,...,valueN)
$exp USERID=scott/tiger FULL=y FILE=myfull.dmp
$exp USERID=scott/tiger OWNER=(SCOTT,ALI) FILE=exp_own.dmp
The above command will export all the objects stored in SCOTT and ALI’s schema.
$exp USERID=scott/tiger TABLES=(scott.emp,scott.sales) FILE=exp_tab.dmp
This will export scott’s emp and sales tables.
IMP SCOTT/TIGER
IMP SCOTT/TIGER IGNORE=Y TABLES=(EMP,DEPT) FULL=N
USERID must be the first parameter on the command line.
No comments:
Post a Comment