真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

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

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

成都創(chuàng)新互聯(lián)成立與2013年,先為崇義等服務(wù)建站,崇義等地企業(yè),進行企業(yè)商務(wù)咨詢服務(wù)。為崇義企業(yè)網(wǎng)站制作PC+手機+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。

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

DIRECTORY=directory_object            --備份文件存儲的路徑

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

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

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

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

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

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

LOGFILE=[directory_object:]file_name     --指定導(dǎo)出過程中日志文件的名稱,默認(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)出哪個表空間中的表數(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)出整個數(shù)據(jù)庫

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ù)庫

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)出其它對像

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=對應(yīng)以下四個值

SKIP            不管已存在的表,直接跳過

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

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

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


分享文章:expdp和impdp數(shù)據(jù)泵
標(biāo)題鏈接:http://weahome.cn/article/ggjscs.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部