史上最全Oracle資料泵常用命令
前言
directory相關SQL語句:
select * from dba_directories;
create directory my_dir as '/home/oracle/tmp';
grant read,write on directory my_dir to scott;
EXPDP匯出
1、導數的資料庫使用者需要擁有對directory_object的讀寫許可權。
2、作業系統中需要已經存在directory_object指定的路徑。
3、oracle使用者擁有對directory_object指定路徑的讀寫許可權。
4、system使用者匯出使用者,會將建立使用者和授予系統許可權的後設資料也匯出,普通使用者不能匯出這些後設資料。
##匯出一張表,例:
expdp system/oracle directory=my_dir dumpfile=expdp.dmp logfile=expdp.log tables=scott.emp
##匯出多張表,例:
expdp system/oracle directory=my_dir dumpfile=expdp.dmp logfile=expdp.log tables=\(scott.emp,scott.dept\)
##匯出一個使用者(匯出這個使用者的所有物件),例:
expdp system/oracle directory=my_dir dumpfile=expdp.dmp logfile=expdp.log schemas=scott
##匯出多個使用者,例:
expdp system/oracle directory=my_dir dumpfile=expdp.dmp logfile=expdp.log schemas=\(scott,hr\)
##匯出整個資料庫(sys、ordsys、mdsys的使用者資料不會被匯出)例:
expdp system/oracle directory=my_dir dumpfile=expdp.dmp logfile=expdp.log full=yes
##並行匯出:
expdp system/oracle directory=my_dir dumpfile=expdp%U.dmp logfile=expdp.log schemas=scott parallel=5
##匯出使用者後設資料(包含表定義、儲存過程、函式等等):
expdp system/oracle directory=my_dir dumpfile=expdp.dmp logfile=expdp.log schemas=scott content=metadata_only
##匯出使用者儲存過程,例:
expdp system/oracle directory=my_dir dumpfile=expdp.dmp logfile=expdp.log schemas=scott include=procedure
##匯出使用者函式和檢視,例:
expdp system/oracle directory=my_dir dumpfile=expdp.dmp logfile=expdp.log schemas=scott include=\(function,view\)
##匯出一個使用者,但不包括索引,例:
expdp system/oracle directory=my_dir dumpfile=expdp.dmp logfile=expdp.log schemas=scott exclude=index
attach=[schema_name.]job_name
說明:nodefault。連線到作業,進入互動模式。
匯出模式,以下五個引數互斥。
full=[yes|no]
說明:nodefault。匯出所有資料和後設資料。要執行完全匯出,需要具有datapump_exp_full_database角色。
schemas=schema_name[,...]
說明:default current user's schema。匯出使用者。
tables=[schema_name.]table_name[:partition_name][,...]
說明:nodefault。匯出表。
tablespaces=tablespace_name[,...]
說明:nodefault。匯出表空間。
transport_tablespaces=tablespace_name[,...]
說明:nodefault。匯出可移動表空間。
過濾條件,以下三個引數互斥:
query=[schema.][table_name:] query_clause
說明:nodefault。按查詢條件匯出。
exclude=object_type[:name_clause][,...]
說明:nodefault。排除特定的物件型別。
include=object_type[:name_clause][,...]
說明:nodefault。包括特定的物件型別。
其他引數:
directory=directory_object
說明:default:data_pump_dir。匯出路徑。
dumpfile=[directory_object:]file_name[,...]
說明:default:expdat.dmp。匯出的檔名。
logfile=[directory_object:]file_name
說明:default:export.log。匯出的日誌檔名。
content=[all|data_only|metadata_only]
說明:default:all。指定要匯出的資料。
parallel=integer
說明:default:1。並行度,該值應小於等於dmp檔案數量,或可以為'dumpfile='使用替換變數'%U'。
RAC環境中,並行度大於1時,注意目錄應該為共享目錄。
compression=[all|data_only|metadata_only|none]
說明:default:metadata_only。壓縮。
parfile=[directory_path]file_name
說明:nodefault。指定匯出引數檔名稱。
network_link=source_database_link
說明:nodefault。連線到源資料庫進行匯出。
filesize=integer[b|kb|mb|gb|tb]
說明:default:0不限制大小。指定每個dmp檔案的最大大小。
如果此引數小於將要匯出的資料大小,將報錯ORA-39095。
job_name=jobname_string
說明:default:system-generated name of the form SYS_EXPORT_<mode>_NN。指定job名稱。
version=[compatilble|latest|version_string]
說明:default:compatible。預設相容模式,可以指定匯出dmp檔案的版本。
IMPDP匯入
1、expdp匯出的檔案不能使用imp匯入,只能透過impdp匯入資料庫。
2、匯入時遇到已存在的物件,預設會跳過這個物件,繼續匯入其他物件。
3、匯入時應確認dmp檔案和目標資料庫的tablespace、schema是否對應。
4、匯入dmp檔案時,應確定dmp檔案匯出時的命令,以便順利匯入資料。
拿到一個dmp檔案,如果忘記了匯出命令,可以透過以下方法確認(非官方,生產資料勿使用):
expdp匯出的檔案開頭為0301,exp匯出的檔案開頭為0303
expdp匯出的dmp檔案頭資訊:
"SYS"."SYS_EXPORT_TABLE_01" -----job名稱
x86_64/Linux 2.4.xx -----作業系統版本
bjdb -----資料庫名稱
ZHS16GBK -----資料庫字符集
11.02.00.04.00 -----資料庫版本
exp匯出的dmp檔案頭資訊:
iEXPORT:V11.02.00 -----版本
USCOTT -----使用者
RTABLES -----物件
確認expdp匯出的dmp檔案的匯出命令
strings test.dmp | grep CLIENT_COMMAND
##匯入dmp檔案中的所有資料,例:
impdp system/oracle directory=my_dir dumpfile=expdp.dmp logfile=impdp.log full=yes
##匯入一張表,例:
impdp system/oracle directory=my_dir dumpfile=expdp.dmp logfile=impdp.log tables=scott.emp
##匯入多張表,例:
impdp system/oracle directory=my_dir dumpfile=expdp.dmp logfile=impdp.log tables=\(scott.emp,scott.dept\)
##匯入一個使用者,例:
impdp system/oracle directory=my_dir dumpfile=expdp.dmp logfile=impdp.log schemas=scott
##匯入多個使用者,例:
impdp system/oracle directory=my_dir dumpfile=expdp.dmp logfile=impdp.log schemas=\(scott,hr\)
##並行匯入:
impdp system/oracle directory=my_dir dumpfile=expdp%U.dmp logfile=impdp.log parallel=5
##匯入後設資料(包含表定義、儲存過程、函式等等):
impdp system/oracle directory=my_dir dumpfile=expdp.dmp logfile=impdp.log content=metadata_only
##匯入儲存過程,例:
impdp system/oracle directory=my_dir dumpfile=expdp.dmp logfile=impdp.log include=procedure
##匯入函式和檢視,例:
impdp system/oracle directory=my_dir dumpfile=expdp.dmp logfile=impdp.log include=\(function,view\)
##匯入資料,但不包括索引,例:
impdp system/oracle directory=my_dir dumpfile=expdp.dmp logfile=impdp.log exclude=index
##重新命名錶名匯入,例:
impdp system/oracle directory=my_dir dumpfile=expdp.dmp logfile=impdp.log remap_table=scott.emp:emp1
##重新命名schema名匯入,例:
impdp system/oracle directory=my_dir dumpfile=expdp.dmp logfile=impdp.log remap_schema=scott:tim
##重新命名錶空間名匯入,例:
impdp system/oracle directory=my_dir dumpfile=expdp.dmp logfile=impdp.log remap_tablespace=users:apptbs
##匯入時,忽略所有物件的段屬性,這樣匯入時物件都建立在目標資料庫使用者預設的表空間上。
impdp system/oracle directory=my_dir dumpfile=expdp.dmp logfile=impdp.log transform=segment_attributes:n
##將dmp檔案的ddl語句匯入到一個檔案,不匯入資料庫,例:
impdp system/oracle directory=my_dir dumpfile=expdp.dmp logfile=impdp.log sqlfile=import.sql
attach=[schema_name.]job_name
說明:nodefault。連線到作業,進入互動模式。
匯入模式,以下五個引數互斥。
full=[yes|no]
說明:default:yes。匯入dmp檔案的所有資料和後設資料。
schemas=schema_name[,...]
說明:nodefault。匯入使用者。
tables=[schema_name.]table_name[:partition_name][,...]
說明:nodefault。匯入表。
tablespaces=tablespace_name[,...]
說明:nodefault。匯入表空間。
transport_tablespaces=tablespace_name[,...]
說明:nodefault。匯入可移動表空間。
過濾條件,以下三個引數互斥:
query=[schema.][table_name:] query_clause
說明:nodefault。按查詢條件匯入。
exclude=object_type[:name_clause][,...]
說明:nodefault。排除特定的物件型別。
include=object_type[:name_clause][,...]
說明:nodefault。包括特定的物件型別。
其他引數:
directory=directory_object
說明:default:data_pump_dir。匯入路徑。
dumpfile=[directory_object:]file_name[,...]
說明:default:expdat.dmp。匯入的檔名。
logfile=[directory_object:]file_name
說明:default:export.log。匯入的日誌檔名。
content=[all|data_only|metadata_only]
說明:default:all。指定要匯入的資料。
parallel=integer
說明:default:1。並行度,該值應小於等於dmp檔案數量,或可以為'dumpfile='使用替換變數'%U'。
compression=[all|data_only|metadata_only|none]
說明:default:metadata_only。壓縮。
parfile=[directory_path]file_name
說明:nodefault。指定匯入引數檔名稱。
network_link=source_database_link
說明:nodefault。連線到源資料庫進行匯入。
job_name=jobname_string
說明:default:system-generated name of the form SYS_EXPORT_<mode>_NN。指定job名稱。
version=[compatilble|latest|version_string]
說明:default:compatible。預設相容模式,可以指定匯入dmp檔案的版本。
REMAP_TABLE=[schema.]old_tablename[.partition]:new_tablename
說明:nodefault。允許匯入期間重新命名錶名。
REMAP_SCHEMA=source_schema:target_schema
說明:nodefault。允許匯入期間重新命名schema名。
REMAP_TABLESPACE=source_tablespace:target_tablespace
說明:nodefault。允許匯入期間重新命名錶空間名。
TRANSFORM = transform_name:value[:object_type]
說明:nodefault。允許改正正在匯入的物件的DDL。
SQLFILE=[directory_object:]file_name
說明:nodefault。根據其他引數,將所有的 SQL DDL 寫入指定的檔案。
TABLE_EXISTS_ACTION=[SKIP | APPEND | TRUNCATE | REPLACE]
說明:default:skip(if content=data_only is specified,then the default is append)
互動模式
1、匯入匯出命令列執行期間按Ctrl + c
2、expdp attach=jobname或impdp attach=jobnam 檢視匯入匯出日誌可以看到jobname,也可以透過查詢dba_datapump_jobs找到jobname。
報錯總結
ORA-39002: invalid operation
ORA-39070: Unable to open the log file.
ORA-29283: invalid file operation
ORA-06512: at "SYS.UTL_FILE", line 536
ORA-29283: invalid file operation
ORA-39000: bad dump file specification
ORA-39143: dump file "/u01/20161031/bjh02.dmp" may be an original export dump file
ORA-39001: invalid argument value
ORA-39000: bad dump file specification
ORA-31640: unable to open dump file "/home/oracle/EXPDP20161024_1.DMP" for read
ORA-27037: unable to obtain file status
expdp system/oracle schemas=scott directory=my_dir dumpfile=scott.dmp logfile=scott.log content=metadata_only
impdp system/oracle directory=my_dir schemas=scott dumpfile=scott.dmp logfile=scott_imp.log sqlfile=scott.sql
[oracle@Yukki tmp]$ impdp -help
SQLFILE
Write all the SQL DDL to a specified file.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31545820/viewspace-2665350/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 大資料概念:史上最全大資料解析大資料
- 【資源】史上最全資料集彙總
- ORACLE 資料泵Oracle
- oracle資料泵Oracle
- 史上最全“大資料”學習資源集合大資料
- oracle 資料泵解析Oracle
- oracle之資料泵Oracle
- 史上最全的“大資料”學習資源(上)大資料
- Oracle 資料泵的使用Oracle
- oracle 資料泵引數Oracle
- 吐血總結|史上最全的MySQL學習資料!!MySql
- 史上最全、最詳細的Docker學習資料Docker
- oracle資料泵備份(Expdp命令)Oracle
- Oracle資料庫(資料泵)遷移方案(上)Oracle資料庫
- Oracle資料庫(資料泵)遷移方案(下)Oracle資料庫
- Oracle資料泵(Oracle Data Pump) 19cOracle
- 史上最全webview詳解WebView
- 資料泵
- Oracle expdp資料泵遠端匯出Oracle
- oracle邏輯備份之--資料泵Oracle
- 使用Oracle資料泵問題總結Oracle
- Oracle資料泵-schema匯入匯出Oracle
- Oracle備份恢復五(資料泵)Oracle
- oracle11g資料泵詳解Oracle
- 詳說Oracle Vault——使用資料泵工具Oracle
- oracle 資料泵 content=data_onlyOracle
- 轉oracle資料泵匯出時報錯Oracle
- cad常用命令大全圖表 史上最全CAD快捷鍵命令大全
- 【ASK_ORACLE】重灌Oracle資料泵(Datapump)工具的方法Oracle
- 史上最全SQL優化方案SQL優化
- Oracle Data Pump 11G 資料泵元件Oracle元件
- Oracle資料泵的匯入和匯出Oracle
- Oracle資料泵匯出匯入(expdp/impdp)Oracle
- ORACLE 資料泵之NETWORK_LINKOracle
- Oracle資料泵的備份與恢復Oracle
- Oracle使用資料泵匯出匯入表Oracle
- ORACLE 10g資料泵使用說明Oracle 10g
- Oracle資料庫常用命令Oracle資料庫