91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

OGG中各種數據泵的初始化腳本是什么

發布時間:2021-11-03 17:19:43 來源:億速云 閱讀:168 作者:柒染 欄目:建站服務器

OGG中各種數據泵的初始化腳本是什么,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

一、先導元數據

## 導出元數據 (用戶模式)
userid=system/system_cmcc_shsnc2018 
directory=BAK_DIR
dumpfile=expdp_boss2_1_10_metadata_%U.dmp
exclude=statistics
logfile = expdp_boss2_1_10_metadata.log
parallel=4
schemas=(ucr_act21,
uop_act21,
ucr_act22,
uop_act22,
ucr_act41,
uop_act41,
ucr_act42,
uop_act42,
ucr_catalog,
uop_catalog)
content=metadata_only

##導入元數據  (用戶模式)
userid ='system/system_cmcc_shsnc2018'
directory=BAK_DIR
dumpfile=expdp_boss2_2_metadata_%U.dmp
logfile = impdp_boss2_2_pk_index.log
parallel=4
schemas=('UIA_ACT21_STA',
'UIA_ACT22_STA',
'UIA_ACT41_STA',
'UIA_ACT42_STA',
'UIF_ACT21_BI',
'UIF_ACT21_STA',
'UIF_ACT22_BI',
'UIF_ACT22_STA',
'UIF_ACT41_BI',
'UIF_ACT41_STA',
'UIF_ACT42_BI',
'UIF_ACT42_STA',
'UIF_PARAM2',
'UIF_PARAM4')
content=metadata_only
INCLUDE=index,CONSTRAINT
remap_tablespace=(
TBS_ACT_DEF:TBS_ACT_HDACT08
USERS:TBS_ACT_HDACT08
TS_VB_ACCT_01:TBS_ACT_HDACT08
TS_VB_INTF_DAT:TBS_ACT_HDACT08
TS_VB_BASE_DAT:TBS_ACT_HDACT08
TS_VB_INFO:TBS_ACT_HIACT07
TS_VB_INTF_IND:TBS_ACT_HIACT07
)

########################################################

# 目標庫disable相關對象
# 目標數據庫重構并open后,需要diable trigger/job/cascade reference;


對應的disable腳本如下:
set echo off
set verify off
set feedback off
set pagesize 10000
set heading off
set linesize 200
set trim on

spool disable_ref.txt
select 'alter table '||owner||'.'||table_name||' disable constraint '||constraint_name||';'
from dba_constraints
where constraint_type in ('R') and owner = 'XPADRPT' and delete_rule='CASCADE' and status ='ENABLED';
spool off

spool disable_trigger.txt

select 'alter trigger '||owner||'.'||trigger_name||' disable;'
from dba_triggers where owner = 'XPADRPT'  and STATUS='ENABLED';

spool off 


spool disable_job.txt

select 'execute DBMS_IJOB.BROKEN('||job||',TRUE); commit;'
       from dba_jobs
       where schema_user = 'XPADRPT' and BROKEN='N';

spool off 

########################################################

二、再導數據

#############################
-- 會列出普通表與分區表

select owner,segment_name,sum(bytes)/1024/1024/1024 from dba_segments where owner='UCR_ACT41' and segment_type in ('TABLE','TABLE PARTITION') group by owner,segment_name order by sum(bytes)/1024/1024/1024 desc;

--列出(普通表+分區別總數)、分區總數
select owner,object_type,count(1) as"NUM" from dba_objects
where owner in ('TEST') and object_type in ('TABLE','TABLE PARTITION')
group by owner,object_type ;


-- dba_tables 中包含普通表與分區表

#############################

2.1、用戶模式到數據

##導出
userid=system/system_cmcc_shsnc2018 
directory=BAK_DIR
dumpfile=expdp_UMT_ACT2_data_20180714_%U.dmp
exclude=statistics
logfile = expdp_UMT_ACT2_data_20180714.log
parallel=4
schemas=UMT_ACT2
content=data_only
compression=DATA_ONLY

##導入
userid=system/system_cmcc_shsnc2018 
directory=BAK_DIR
dumpfile=expdp_UMT_ACT2_data_20180714_%U.dmp
exclude=statistics
logfile =impdp_UMT_ACT2_data_20180714.log
parallel=4
schemas=UMT_ACT2

2.2、表模式導數據

##導出
userid=system/system_cmcc_shsnc2018 
directory=BAK_DIR
dumpfile=expdp_UCR_ACT42_1_2_20180715_%U.dmp
exclude=statistics
logfile = expdp_UCR_ACT42_1_2_20180715.log
parallel=4
tables=UCR_ACT42.TF_B_WRITEOFFLOG_D,UCR_ACT42.TI_OH_SMS_2015
content=data_only
compression=DATA_ONLY


##導入
userid=system/system_cmcc_shsnc2018 
directory=BAK_DIR
dumpfile=expdp_UCR_ACT42_3_7_20180716_%U.dmp
logfile =impdp_UCR_ACT42_3_7_20180716.log
parallel=25
tables=UCR_ACT42.TF_B_SCORE_TRADELOG,                  
UCR_ACT42.TS_B_BILL_BEFORE,                 
UCR_ACT42.TF_BH_INTEGRALBILL_OLD,               
UCR_ACT42.TP_INFOCHECK_RESULT_NEW,              
UCR_ACT42.TF_B_PAYLOG

2.3、 某用戶下排除特定表導其他表的數據

## 導出
userid=system/system_cmcc_shsnc2018 
directory=BAK_DIR
dumpfile=expdp_UCR_ACT21_181_20180718_%U.dmp
logfile = expdp_UCR_ACT21_181_20180718.log
parallel=5
SCHEMAS=ucr_act21
content=data_only
compression=DATA_ONLY
exclude=statistics,TABLE:"IN ('XX','XX')"


## 導入
userid=system/system_cmcc_shsnc2018 
directory=BAK_DIR
dumpfile=expdp_UCR_ACT21_181_20180718_%U.dmp
logfile = impdp_UCR_ACT21_181_20180718.log
parallel=25
SCHEMAS=ucr_act21

關于OGG中各種數據泵的初始化腳本是什么問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

ogg
AI

石渠县| 中牟县| 池州市| 万州区| 桂阳县| 盖州市| 富民县| 萝北县| 石阡县| 彩票| 缙云县| 浦北县| 库尔勒市| 运城市| 文水县| 仪征市| 吉安市| 巴南区| 嘉禾县| 昌宁县| 内乡县| 太和县| 阿鲁科尔沁旗| 临澧县| 淮南市| 建昌县| 鄂托克旗| 望奎县| 灵武市| 弥勒县| 齐齐哈尔市| 化德县| 丹寨县| 大同县| 德保县| 翁牛特旗| 芦山县| 定州市| 宣威市| 巴马| 闵行区|