博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
oracle扩展dblink数。
阅读量:5822 次
发布时间:2019-06-18

本文共 2213 字,大约阅读时间需要 7 分钟。

【标记】在进行数据迁移时;出现

Compilation errors for PROCEDURE ZDGAME.GFF_FETCH_MZR_LOGError: ORA-04052: error occurred when looking up remote object mf_game_db.g_account@MZRA_ALL       ORA-00604: error occurred at recursive SQL level 1       ORA-02020: too many database links in useLine: 1Text: CREATE OR REPLACE PROCEDURE gff_fetch_mzr_log(v_yesterday VARCHAR2) IS  

单独通过dblink去查是OK;但是编译存储过程会出现上面问题。问题出现在参数上面

下面是解决方案:

[oracle@bjmxy_server12_17 admin]$ sqlplus / as sysdbaSQL*Plus: Release 11.2.0.1.0 Production on Tue Jul 14 14:20:24 2015Copyright (c) 1982, 2009, Oracle.  All rights reserved.Connected to:Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit ProductionWith the Partitioning, OLAP, Data Mining and Real Application Testing optionsSQL> show parameter open_linksNAME                                 TYPE        VALUE------------------------------------ ----------- ------------------------------open_links                           integer     4open_links_per_instance              integer     4SQL> alter system set open_links=50;alter system set open_links=50                 *ERROR at line 1:ORA-02095: specified initialization parameter cannot be modifiedSQL>  alter system set open_links=200 scope=spfile;System altered.SQL>  alter system set open_links_per_instance=200 scope=spfile;System altered.SQL> show parameter open_linksNAME                                 TYPE        VALUE------------------------------------ ----------- ------------------------------open_links                           integer     4open_links_per_instance              integer     4SQL> shutdown immediate;Database closed.Database dismounted.ORACLE instance shut down.SQL> startupORACLE instance started.Total System Global Area 2.0310E+10 bytesFixed Size                  2212976 bytesVariable Size            1.5301E+10 bytesDatabase Buffers         4831838208 bytesRedo Buffers              175132672 bytesDatabase mounted.Database opened.SQL> show parameter open_linksNAME                                 TYPE        VALUE------------------------------------ ----------- ------------------------------open_links                           integer     200open_links_per_instance              integer     200

  

转载地址:http://jpbdx.baihongyu.com/

你可能感兴趣的文章
Binary Search Tree Iterator leetcode
查看>>
uva-317-找规律
查看>>
Event事件的兼容性(转)
查看>>
我的2014-相对奢侈的生活
查看>>
zoj 2412 dfs 求连通分量的个数
查看>>
Java设计模式
查看>>
一文读懂 AOP | 你想要的最全面 AOP 方法探讨
查看>>
Spring Cloud 微服务分布式链路跟踪 Sleuth 与 Zipkin
查看>>
ORM数据库框架 SQLite 常用数据库框架比较 MD
查看>>
华为OJ 名字美丽度
查看>>
微信公众号与APP微信第三方登录账号打通
查看>>
onchange()事件的应用
查看>>
Windows 下最佳的 C++ 开发的 IDE 是什么?
查看>>
软件工程师成长为架构师必备的十项技能
查看>>
python 异常
查看>>
百度账号注销
查看>>
mysql-This version of MySQL doesn’t yet support ‘LIMIT & IN/ALL/ANY/SOME 错误解决
查看>>
BIEE Demo(RPD创建 + 分析 +仪表盘 )
查看>>
Cocos2dx 3.0开发环境的搭建--Eclipse建立在Android工程
查看>>
基本概念复习
查看>>