//登入sqlplus
sqlplus / as sysdba;
//建立使用者
create user ncc identified by 123456;
//使用者授權
grant connect, resource,dba to ncc;
//建立資料夾進行匯出;
create directory oracledump as 'c:\oracledump';
//授權
grant read,write on directory oracledump to ncc;
//匯出全部
expdp ncc/123456 schemas=ncc directory=oracledump dumpfile=202020717.dump logfile=202020717.log;
//匯出指定表??待定
expdp sys/password123/fit2cloud2 schemas=ncc directory=oracledump dumpfile=202020718.dump logfile=202020718.log;
//參考
expdp ncc/*** directory=autobakdir dumpfile=%bakfile%.dmp logfile=%bakfile%.log
登入後,檢視邏輯目錄對應的物理目錄;
sqlplus @[user]/@[password] ;
select directory_path from dba_directories where directory_name = 'oracledump';
oracle 匯出資料庫
第一種方式 使用plsql匯出資料庫 1 開啟plsql,找到工具欄,匯出表 2 進入匯出主頁,選擇資料夾,輸入匯出檔名稱 點選儲存 33 點選匯出按鈕,即可彈出匯出資料概況 4如果中途無報錯想象,即可在你選定的路徑下找到該dmp檔案,備份操作完成 end1 點選開始按鈕,在執行中輸入cmd 回車 ...
Oracle 資料庫 匯入匯出
匯入匯出時要,通過 執行 進行到oracle的安裝目錄的 bin 目錄下導 例如 d oracle product 10.1.0 db 1 bin 匯出分三種 匯出 表 方案 資料庫 1.1.1 匯出自己的表 說明 使用者 密碼 資料庫例項 表名 可多個 檔案路徑 exp userid scott ...
oracle資料庫匯出使用者
oracle匯出使用者,可以把包括觸發器,函式等所有資料庫元素,非常的方便。例子 匯出使用者名稱 密碼 lgp lgp的使用者,資料庫例項名為 srorcllgp 命令 1.exp lgp lgp srorcllgp 連線到資料庫,宣告做exp匯出工作 2.expdat.dmp 填寫匯出檔案的完整路...