溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

expdp和impdp數(shù)據(jù)泵

發(fā)布時(shí)間:2020-04-08 22:53:46 來(lái)源:網(wǎng)絡(luò) 閱讀:1100 作者:z597011036 欄目:關(guān)系型數(shù)據(jù)庫(kù)

COMPRESSION={METADATA_ONLY | NONE}       --數(shù)據(jù)壓縮

CONTENT={ALL | DATA_ONLY | METADATA_ONLY}  --指定導(dǎo)出的內(nèi)容(當(dāng)設(shè)置CONTENT為ALL時(shí),會(huì)導(dǎo)出對(duì)象元數(shù)據(jù)及對(duì)象數(shù)據(jù);當(dāng)設(shè)置為DATA_ONLY時(shí),只導(dǎo)出對(duì)象數(shù)據(jù);當(dāng)設(shè)置為METADATA_ONLY時(shí),只導(dǎo)出對(duì)象元數(shù)據(jù)。)

DIRECTORY=directory_object            --備份文件存儲(chǔ)的路徑

DUMPFILE=[directory_object:]file_name [, ...]   --directory_object用于指定目錄對(duì)象名,file_name用于指定轉(zhuǎn)儲(chǔ)文件名。如果不給定directory_object,導(dǎo)出工具會(huì)自動(dòng)使用DIRECTORY選項(xiàng)指定的目錄對(duì)象。

ESTIMATE={BLOCKS | STATISTICS}    --設(shè)置為BLOCKS時(shí),oracle會(huì)按照目標(biāo)對(duì)象所占用的數(shù)據(jù)塊個(gè)數(shù)乘以數(shù)據(jù)塊尺寸估算對(duì)象占用的空間;設(shè)置為STATISTICS時(shí),會(huì)根據(jù)最近的統(tǒng)計(jì)值給出對(duì)象占用空間,這種方法的誤差會(huì)比較大。無(wú)論使用哪種選項(xiàng)值,都會(huì)有誤差。

ESTIMATE_ONLY={y | n}     --指定是否只估算導(dǎo)出作業(yè)所占用的磁盤空間,默認(rèn)值為N

EXCLUDE=object_type[:name_clause] [, ...]   --用于控制在導(dǎo)出過(guò)程中哪些數(shù)據(jù)庫(kù)對(duì)象不被導(dǎo)出。(object_type用于指定要排除的對(duì)象類型,name_clause用于指定要排除的具體對(duì)象名稱。注意EXCLUDE選項(xiàng)和INCLUDE選項(xiàng)不能同時(shí)使用。)

FILESIZE=integer[B | K | M | G]   --限定單個(gè)轉(zhuǎn)儲(chǔ)文件的最大容量,默認(rèn)值是0,表示沒(méi)有文件尺寸的限制。該選項(xiàng)與DUMPFILE選項(xiàng)一同使用。

FULL={y | n}         --是否以全庫(kù)模式導(dǎo)出數(shù)據(jù)庫(kù)。默認(rèn)為N。

LOGFILE=[directory_object:]file_name     --指定導(dǎo)出過(guò)程中日志文件的名稱,默認(rèn)值為export.log。

PARALLEL=integer       --指定執(zhí)行導(dǎo)出操作的并行度,默認(rèn)值為1。

SCHEMAS=schema_name [, ...]       --按照SCHEMA模式導(dǎo)出,默認(rèn)為當(dāng)前用戶。很常用,不做更多的解釋。

TABLES=[schema_name.]table_name[:partition_name] [, ...]   --schema_name用于指定用戶名,table_name用于指定導(dǎo)出的表名,partition_name用于指定要導(dǎo)出的分區(qū)名。

TABLESPACES=tablespace_name [, ...]     --指定需要導(dǎo)出哪個(gè)表空間中的表數(shù)據(jù)。


1.創(chuàng)建備份或者恢復(fù)目錄

SQL> create directory tong as '/u01';

Directory created.

SQL> grant read,write on directory tong to USERCTLDEV;

Grant succeeded.

SQL> select * from dba_directories where directory_name='TONG';

OWNER       DIRECTORY_NAME      DIRECTORY_PATH

SYS       TONG      /u01

SQL>


2.按用戶導(dǎo)出數(shù)據(jù)

expdp scott/tiger schemas=scott dumpfile=scott.dmp logfile=scott.log directory=tong;


3.按用戶并行度導(dǎo)出數(shù)據(jù)

expdp scott/tiger schemas=scott dumpfile=scott.dmp logfile=scott.log directory=tong parallel=40 


4.按表名導(dǎo)出數(shù)據(jù)

expdp scott/tiger tables=emp,dept dumpfile=scott.dmp logfile=scott.log directory=tong


5.按表名和帶條件導(dǎo)出數(shù)據(jù)

expdp scott/tiger tables=emp query='where deptno=20' dumpfile=scott.dmp logfile=scott.log directory=tong


6.按表空間導(dǎo)出數(shù)據(jù)

expdp scott/tiger tablespace=temp,example dumpfile=scott.dmp logfile=scott.log directory=tong


7.導(dǎo)出整個(gè)數(shù)據(jù)庫(kù)

expdp system/manager directory=tong dumpfile=full.dmp FULL=y


8.將scott用戶的數(shù)據(jù)導(dǎo)入到scott用戶下

impdp scott/tiger directory=tong dumpfile=expdp.dmp schemas=scott


9.將scott用戶下的dept表導(dǎo)入到system用戶下

impdp system/manager directory=tong dumpfile=expdp.dmp tables=scott.dept remap_schema=scott:system


10.導(dǎo)入表空間

impdp system/manager directory=tong dumpfile=tablespace.dmp tablespace=example


11.導(dǎo)入數(shù)據(jù)庫(kù)

impdb system/manager directory=dump_dir dumpfile=full.dmp full=y


12.將scoot用戶下的abc表空間的數(shù)據(jù)導(dǎo)入到system用戶下的bcd表空間

impdp scott/tiger directory=tong dumpfile=scott.dmp  logfile=scott.log remap_schema=scott:system remap_tablespace=abc:bcd


13.只導(dǎo)出數(shù)據(jù),表結(jié)構(gòu)和索引,不導(dǎo)出其它對(duì)像

expdp upcenter/zVQpErDi76 tables=FUND_CURR_INFO,FUND_NAV_CALC,FUND_MNY_RETRUN directory=tong dumpfile=upcenter.dump logfile=upcenter.log INCLUDE=TABLE,TABLE_DATA,INDEX compression=ALL


14.如果表空間已存在的表,導(dǎo)入數(shù)據(jù)有4種情況

TABLE_EXISTS_ACTION=對(duì)應(yīng)以下四個(gè)值

SKIP            不管已存在的表,直接跳過(guò)

APPEND          保持現(xiàn)有的數(shù)據(jù),導(dǎo)入新數(shù)據(jù)

TRUNCATE         刪除原有的數(shù)據(jù),導(dǎo)入新數(shù)據(jù)

REPLACE          刪除所有表(drop),并重建(create),再導(dǎo)入新數(shù)據(jù)


向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI