1、執行環境:可以在SQLPLUS.EXE或者DOS(命令行)中執行(DOS命令可以執行是由於..\product\11.2.0\client_1\bin被設置了環境變量)
2、執行語句:
一、數據導出:
1 將數據庫TEST完全導出,用戶名system 密碼manager 導出到D:\daochu.dmp中
exp system/manager@TEST file=d:\daochu.dmp log=d:\daochu.log full=y;
2 將數據庫中system用戶與sys用戶的表導出
exp system/manager@TEST file=d:\daochu.dmp log=d:\daochu.log owner=(system,sys);
3 將數據庫中的表table1 、table2導出
exp system/manager@TEST file=d:\daochu.dmp log=d:\daochu.log tables=(table1,table2);
4 將數據庫中的表table1中的字段filed1以"00"打頭的數據導出
exp system/manager@TEST file=d:\daochu.dmp log=d:\daochu.log tables=(table1) query=\" where filed1 like '00%'\";
同名用戶之間的數據導入:
imp mh/zymobile@mh file=d:\daochu.dmp log=d:\daochu.log full=y;
不同名之間的數據導入:
imp mh/zymobile@mh fromuser=mh touser=mh_new file=d:\daochu.dmp log=d:\daochu.log full=y;
二、數據導入:
1 將D:\daochu.dmp 中的數據導入 TEST數據庫中。
imp system/manager@TEST file=d:\daochu.dmp log=d:\daochu.log;
上面可能有點問題,因為有的表已經存在,然後它就報錯,對該表就不進行導入,在後面加上 ignore=y 就可以了。
2 將d:\daochu.dmp中的表table1 導入
imp system/manager@TEST file=d:\daochu.dmp tables=(table1);