第一步:win+r 輸入cmd回車,啟動dos視窗。
第二步:登陸有管理員許可權的oracle賬戶;操作步驟是:
輸入:sqlplus 回車;
輸入 yxt as sysdba 回車 【ytx是賬戶名稱】;
輸入密碼 回車;
第三步:建立資料目錄,並授權;具體步驟是:
輸入:create directory yang as 『d:\oracledata』; 回車【yang數資料目錄名稱,as後邊寫檔案將要存放的磁碟位置】
輸入:grant read,write on directory yang to yxt; 回車 【yang是資料目錄名稱,yxt是賬戶名稱】
輸入:exit 回車
第五步:輸入資料幫浦匯出命令,具體操作步驟如下:
輸入:expdp yxt/yxt@orcl directory=yang dumpfile=yxt20200615.dmp logfile=yxt20200615.log 回車【注意末尾沒有;號】
解析:expdp使用者名稱/使用者密碼@例項名directory=資料目錄名稱dumpfile=檔名.dmp logfile=檔名.log
ok齊活!
oracle 資料幫浦匯入與資料幫浦匯出
資料幫浦匯入 指令 impdp 一 資料庫所有物件的匯入 impdp system tiger dumpfile pump dir mydatabase dat filesize 100m nologfile y job name zhang full y estimate only 二 使用者資料...
oracle 資料幫浦匯入匯出
sqlplus system system egov create directory dump dir as d dbback exit expdp system system egov directory dump dir dumpfile urbanyw.dmp schemas urbanyw...
oracle資料幫浦匯入匯出
使用expdp和impdp時應該注意的事項 exp和imp是客戶端工具程式,它們既可以在客戶端使用,也可以在服務端使用。expdp和impdp是服務端的工具程式,他們只能在oracle服務端使用,不能在客戶端使用。imp只適用於exp匯出的檔案,不適用於expdp匯出檔案 impdp只適用於expd...