oracle 資料幫浦使用

2021-07-13 10:30:56 字數 791 閱讀 5241

1、建立directory 

create or replace directory ekltrustdirectory

as '/home/oracle/eklxt/restoredb';

注意    1、要確保路徑在服務上存在    2、如果linux環境要有目錄要有讀寫許可權

2、匯出備份

export oracle_sid=kltrust

export nls_lang=american_america.zhs16gbk

expdp depeklxt/depeklxt directory=ekltrustdirectory schemas=ekltrustdirectory     dumpfile=ekltrust.dmp logfile=logfilename;

3、匯入備份

export oracle_sid=kltrust

export nls_lang=american_america.zhs16gbk

impdp username/password directory=dpname schemas=*** dumpfile=dmpname remap_tablespace=tb1:tb2 logfile=logfilename;

tb1:tb2   將資料庫使用者***的表空間tb1轉換為現在的表空間tb2,要求現在資料庫中必須有tb2表空間,不需要有tb1表空間,也不用建立資料庫使用者***,只需要表空間tb2存在即可。

Oracle資料幫浦使用

1 準備工作 1.1 sqlplus登入oracle 本地伺服器連線方式 遠端連線 conn命令登入 sqlplus nolog 先使用sqlplus命令,而不連線資料庫,然後用conn命令登入。1.1 建立邏輯目錄,該命令不會在作業系統建立真正的目錄,最好以system等管理員建立。create ...

oracle 資料幫浦的使用

一 使用資料幫浦進行資料儲存 二 使用資料幫浦進行資料還原 1 sqlplus以dba方式連線到資料庫 2 建立資料資料夾並賦予許可權 建立使用者 create or replace directory data eagle as data eagle 將資料夾的許可權賦予使用者eagle gran...

Oracle 資料幫浦使用詳解

檢查有沒有安裝expdp 一般情況下安裝oracle 自帶 建立並指定輸出位置 create or replace directory 標誌 例 file tmp as 資料幫浦匯出檔案的存放位置 例 d file tmp 告訴oracle指定file tmp這個標誌對應資料夾位置,下面匯出的時候直...