程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle教程 >> 【翻譯自mos文章】在OracleGoldenGate中循環使用ggserr.log的方法

【翻譯自mos文章】在OracleGoldenGate中循環使用ggserr.log的方法

編輯:Oracle教程

【翻譯自mos文章】在OracleGoldenGate中循環使用ggserr.log的方法


在OGG中循環使用ggserr.log的方法:

參考原文:
OGG How Do I Recycle The "ggserr.log" File? (Doc ID 967932.1)

適用於:
Oracle GoldenGate - Version 4.0.0 and later
Generic Linux

問題
GoldenGate的 ggserr.log 日志文件包括有關 GoldenGate 事件的信息,比如:進程啟動,關閉,error ,warning。該文件可能會變的很大。為了循環使用該文件,你不得不停止所有的GoldenGate進程。

解決方案:
1.有一個需求是:在GoldenGate進程運行時,循環使用ggserr.log,在此種情況下,你可以用如下的方法:

          1).  Back up the "ggserr.log" file using the following command:
                   cp -p ggserr.log ggserr.log.bkup

          2).  Truncate the file using the following command:
                   cat /dev/null > ggserr.log

注意:
在windows環境中, 需要使用unix 模擬器(比如cygwin)來完成上述操作。

如果ggserr.log很大,上一步可能需要很長時間,在此時間之內,注意,這個時間是指在1)和2)之間存在時間差,在step1 和step2之間插入的條目會丟失。
如果要求不能丟失任何條目,那麼在ggserr.log最末尾的行(指在step1和step2之間新插入的行)可以被再次備份。

例子:

tail -500 > ggserr.log.bkup_2

對於veridata:
Similar functionality is available for the Veridata veridata.log.
See note 1385983.1 for details.

2. 另外的一個解決方案是 use logrotate (note 1466849.1)

--->注意:note 1466849.1 是指:How to Rotate GoldenGate ggserr.log using logrotate utility for Unix/Linux? (Doc ID 1466849.1)

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved