1.1 基本命令
1. 獲取幫助
$ exp help=y
$ imp help=y
2. 三種工作方式
(1)交互式方式
$ exp // 然後按提示輸入所需要的參數
(2)命令行方式
$ exp user/pwd@dbname file=/oracle/test.dmp full=y // 命令行中輸入所需的參數
(3)參數文件方式
$ exp parfile=username.par // 在參數文件中輸入所需的參數
參數文件 username.par 內容 userid=username/userpassword buffer=8192000
compress=n grants=y
file=/oracle/test.dmp full=y
3. 三種模式
(1)表方式,將指定表的數據導出/導入。
導出:導出一張或幾張表:$ exp user/pwd file=/dir/xxx.dmp log=xxx.log tables=table1,table2
導出某張表的部分數據
$ exp user/pwd file=/dir/xxx.dmp log=xxx.log tables=table1 query=“where col1=‘…’and col2 <…”
導入:導入一張或幾張表
$ imp user/pwd file=/dir/xxx.dmp log=xxx.log tables=table1,
table2 fromuser=dbuser touser=dbuser2 commit=y ignore=y
(2)用戶方式,將指定用戶的所有對象及數據導出/導入。
導出:$ exp user/pwd file=/dir/xxx.dmp log=xxx.log owner=(xx, yy)
只導出數據對象,不導出數據 (rows=n )
$ exp user/pwd file=/dir/xxx.dmp log=xxx.log owner=user rows=n
導入:$ imp user/pwd file=/dir/xxx.dmp log=xxx.log fromuser=dbuser touser=dbuser2
commit=y ignore=y
(3)全庫方式,將數據庫中的所有對象導出/導入導出:
$ exp user/pwd file=/dir/xxx.dmp log=xxx.log full=ycommit=y ignore=y
導入:$ imp user/pwd file=/dir/xxx.dmp log=xxx.log fromuser=dbuser touser=dbuser2