TEMP表空間之Ogg複製程序占用

2021-09-03 10:52:10 字數 3435 閱讀 4016

當日有個變更需求,需要提取資料到壓測環境下,在impdp匯入過程中發現. .

. . imported "rcs"."t_rcs_mer_day":"pmax" 0 kb 0 rows

processing object type table_export/table/comment

processing object type table_export/table/index/index

一直卡著不動,根據經驗應該是該錶有索引表空間,應該是索引表空間,或者臨時表空間不足導致hang住不動。去alert日誌檢查一下;

mon jun 04 15:47:31 2018

statement in resumable session 'sys.sys_import_full_01.1' was suspended due to

ora-01652: unable to extend temp segment by 128 in tablespace rcs_idx

果不其然,確實有警告,該程序應該是停止了。我們先將索引表空間resize一下

mon jun 04 16:06:14 2018

alter database datafile '/u01/yace/datafile/yace/rcs_idx_01.dbf' resize 30g

mon jun 04 16:06:26 2018

completed: alter database datafile '/u01/yace/datafile/yace/rcs_idx_01.dbf' resize 30g

mon jun 04 16:06:26 2018

statement in resumable session 'sys.sys_import_full_01.1' was resumed

隨後就有任務恢復的提示,接下來匯入工作完成

processing object type table_export/table/comment

processing object type table_export/table/index/index

processing object type table_export/table/constraint/constraint

processing object type table_export/table/index/statistics/index_statistics

processing object type table_export/table/statistics/table_statistics

job "sys"."sys_import_full_01" successfully completed at mon jun 4 16:09:10 2018 elapsed 0 00:23:05

有點搞笑最近和temp表空間槓上了哈,我們看看都有什麼利用了temp表空間。

是ogg使用者占用,複製程序難道有延遲?

[oracle@yace ggs12]$ ./ggsci

oracle goldengate command interpreter for oracle

version 12.3.0.1.0 oggcore_12.3.0.1.0_platforms_170721.0154_fbo

linux, x64, 64bit (optimized), oracle 11g on jul 21 2017 20:31:38

operating system character set identified as utf-8.

ggsci (yace) 1> info all

program status group lag at chkpt time since chkpt

manager running

extract running extzw 00:00:00 00:00:05

extract running pmpzw 00:00:00 00:00:05

replicat running repzw 00:00:00 00:00:04

ggsci (yace) 2> info repzw

replicat repzw last started 2018-05-10 18:58 status running

checkpoint lag 00:00:00 (updated 00:00:00 ago)

process id 98477

log read checkpoint file /home/oracle/ogg/ggs12/dirdat/t1000000040

2018-06-04 16:37:32.000442 rba 84950052

用下面語句進行檢視是什麼語句占用了temp表空間

至於怎麼解決不知道了,總不能kill程序吧,mark一下。

OGG 使用pump程序配置複製

root source su oracle oracle source gg ggsci oracle goldengate command interpreter for oracle version 11.2.1.0.1 oggcore 11.2.1.0.1 platforms 120423.0...

temp表空間不足 oracle之臨時表空間組

在乙個臨時表空間 組中,使用者可以定義很多臨時表 空間。乙個臨時表空間組包含至少乙個臨時表空間,但是沒有包含最大個臨時表空間個數。注意,臨時表空間組的名子和臨時表空間的名字必須不相同,不然會出現錯誤。任何臨時表空間都可以 在乙個臨時 表空間中新增 刪除甚至 移動到其他臨時表空間組中。臨時表空間的好處...

OGG複製程序,報ORA 14300

ogg複製程序,報ora 14300 度娘告訴我 物件表為按天的自動分割槽表 partition by range start time interval numtodsinterval 1,day 原因為 當start time的值為null時,然後向分割槽物件表插入資料,資料庫不知道將該條記錄插...