GoldenGate过程 abend,报错OGG-00868 ORA-02396: Exceeded Maximum Idle Time, Please Connect Again

参考原始:

GoldenGate Processes Abend with OGG-00868 ORA-02396: Exceeded Maximum Idle Time, Please Connect Again (Doc ID 1393647.1)

适用于:

Oracle GoldenGate - Version: 11.1.1.0.0 to 11.1.1.1.20 - Release: 11.1.1 to 11.1.1.1

Information in this document applies to any platform.

症状:

Oracle GoldenGate (OGG) 进程abend,其报错为:

Extract (or replicat)进程

ERROR OGG-00868 ORA-02396: exceeded maximum idle time, please connect again.

Manager 进程

ERROR OGG-00665 OCI Error describe for query (bad syntax) (status = 2396-ORA-02396: exceeded maximum idle time, please connect again), SQL<SELECT 1 FROM DUAL WHERE EXISTS ( SELECT ‘x‘ FROM GGS_OWNER.GGS_MARKER WHERE OPTIME < ‘...‘)>.

ERROR OGG-01668 PROCESS ABENDING.

原因:

用户连接超时会发生该问题。检查 该用户是否设置了time out。

解决方式:

SQL> select USERNAME,USER_ID,ACCOUNT_STATUS,PROFILE from dba_users where USERNAME=‘ggs_owner‘;

确认profile是用的哪个,然后再检查 gg user的 idle timeout情况:

SQL> select * from dba_profiles where resource_name=‘IDLE_TIME‘;

如果查询结果以gg user使用profile,检查profile是否有任何限制,或者设置为UNLIMITED

如果  UNLIMITED 不可行,这一增长time out的 时间到一个合适的值。

时间: 2024-10-05 15:02:43

GoldenGate过程 abend,报错OGG-00868 ORA-02396: Exceeded Maximum Idle Time, Please Connect Again的相关文章

GoldenGate进程 abend,报错为OGG-00868 ORA-02396: Exceeded Maximum Idle Time, Please Connect Again

参考原文: GoldenGate Processes Abend with OGG-00868 ORA-02396: Exceeded Maximum Idle Time, Please Connect Again (Doc ID 1393647.1) 适用于: Oracle GoldenGate - Version: 11.1.1.0.0 to 11.1.1.1.20 - Release: 11.1.1 to 11.1.1.1 Information in this document appl

Qt打开外部程序和文件夹需要注意的细节(Qt调用VC写的动态库,VC需要用C的方式输出函数,否则MinGW32编译过程会报错)

下午写程序中遇到几个小细节,需要在这里记录一下. ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 QProcess *process = new QProcess(this);     QFileInfo fileinfo(appUrl);     QString appPath = QApplication::applicationDirPath()+SAVEDIR+"/"+fileinfo.fileName();     bool res = proce

Jmeter录制脚本过程及报错的解决

两个报错:Could not create script recorder报错和您的连接不是私密连接报错 1.录制过程 * 打开jmeter * 点击Templated,选择Recoding模版 * 点击WorkBench节点下-->添加-->非测试元件-->HTTP代理服务器 http代理服务器是这个样子的 2.点击启动就开始报错了 报错信息: Could not create script recorder -see log for detail:>>非法选项: -ext

PHP 结合memcache make 过程的报错解决办法

安装完LAMP中PHP,后面在PHP结合memcache,换成插件的过程中出现出错的解决办法 cd memcache-2.2.1 /application/php5.3.27/bin/phpize ./configure --with-php-config=/application/php5.3.27/bin/php-config make 出现报错: make: *** [memcache.lo] Error 1 解决办法: mv memcache.loT memcache.lo # 特别注意

MYSQL安装过程及报错信息

MYSQL安装步骤: #下载,解压源码包,移动到指定目录: wget http://syslab.comsenz.com/downloads/linux/mysql-5.1.40-linux-x86_64-icc-glibc23.tar.gz tar zxvf mysql-5.1.40-linux-x86_64-icc-glibc23.tar.gz mv mysql-5.1.40-linux-x86_64-icc-glibc23.tar.gz /usr/local/mysql #新建数据库存储路

【Hadoop】9、hadoop1.2.1完全分布式安装过程异常报错

异常报错 1.ssh配置出错,ssh登录 The authenticity of host 192.168.0.xxx can't be established. 用ssh登录一个机器(换过ip地址),提示输入yes后,屏幕不断出现y,只有按ctrl + c结束 错误是:The authenticity of host 192.168.0.xxx can't be established. 以前和同事碰到过这个问题,解决了,没有记录,这次又碰到了不知道怎么处理,还好有QQ聊天记录,查找到一下,找

centos6.5 安装 xtables-addons 过程及报错解决

JVM运行报错:GC overhead limit exceeded

今天在折腾OOM和java的4种引用类型的时候,在运行过程中JVM报了一个错误: java.lang.OutOfMemoryError: GC overhead limit exceeded 这个错误平时遇到的概率很少很少,今天无意中遇到了,这里做个记录.oracle/sun官网的解释是: The concurrent collector will throw an OutOfMemoryError if too much time is being spent in garbage colle

Eclipse报错:gc overhead limit exceeded eclipse

原因是Eclipse默认配置内存太小需要更改Eclipse安装文件夹下的eclipse.ini文件. 1.打开eclipse配置文件  找到eclipse 执行文件上右键-显示包内容-Contents-MacOS-eclipse.ini 修改如下: -Xms512m -Xmx1024m 第一个是最小的初始化内存,第二个是最大的占有内存 还可以加上 -XX:MaxPermSize=1024m这个意思是在编译文件时一直占有最大内存,重启Eclipse