impdp如何將單表導(dǎo)入數(shù)據(jù)庫(kù)?
以下將詳細(xì)介紹使用impdp導(dǎo)入schema=ZAVIER的全部數(shù)據(jù)的步驟。
數(shù)據(jù)準(zhǔn)備將數(shù)據(jù)文件*.impdp拷貝至系統(tǒng)某個(gè)目錄,并確保oracle用戶(hù)對(duì)其擁有權(quán)限(如修改文件/目錄屬主為oracle:oinstall)。本文將其放置于:/home/oracle目錄創(chuàng)建導(dǎo)入路徑
首先登錄數(shù)據(jù)庫(kù),在創(chuàng)建impdp能夠識(shí)別的導(dǎo)入路徑。如下:[oracle@t24app1sg ~]<20181119 16:48:41>$ sqlplus / as sysdba;
SYS@T24APDB> create directory IMP_ZAVIER as '/home/oracle';
directory created.
SYS@T24APDB> select * from dba_directories where DIRECTORY_NAME = 'EXP_ZAVIER';
創(chuàng)建導(dǎo)入用戶(hù)
impdp導(dǎo)入需要使用一個(gè)用戶(hù)USER導(dǎo)入,因而,可以修改system用戶(hù)的密碼執(zhí)行導(dǎo)入。如下:SYS@T24APDB> alter user system identified by 123456;
User altered.
退出sqlplus,執(zhí)行導(dǎo)入
說(shuō)明:directory選項(xiàng)指定剛才創(chuàng)建的導(dǎo)入目錄名;
dumpfile指定導(dǎo)入文件,與impdp類(lèi)似,導(dǎo)入也使用并行parallel參數(shù);
logfile指定導(dǎo)入日志文件;
parallel指定并行導(dǎo)出jobs數(shù)。
其他相關(guān)參數(shù)還有:COMPRESSION(是否采用壓縮)、ENCRYPTION(是否加密)、SCHEMAS(指定導(dǎo)出schema默認(rèn)為登錄schema)等;