ORA-02020错误和db link相关参数介绍

栏目: 数据库 · 发布时间: 6年前

内容简介:如果遇到ORA-02020:too many database links in use,可能是db link相关的问题。[oracle@orcl-db ~]$  oerr ora 2020

博客文章除注明转载外,均为原创。 转载请注明出处。

如果遇到ORA-02020:too many database links in use,可能是db link相关的问题。

[oracle@orcl-db ~]$  oerr ora 2020 

02020, 00000, "too many database links in use"

// *Cause:  The current session has exceeded the INIT.ORA open_links maximum.

// *Action: Increase the open_links limit, or free up some open links by

//          committing or rolling back the transaction and canceling open

//          cursors that reference remote databases.

这时候,可能需要调整如下2个和link相关的参数,分别是:

,前者使指定 每个会话(session)最大能打开的db link数,默认值为4

而后者的作用是使每个实例(instance)最大能打开的db link数,默认值为4。

调整参数,需要重启数据库。

SQL> alter system set open_links=50 scope=spfile;

System altered

SQL> alter system set open_links_per_instance=50 scope=spfile;

System altered

此外视图V$dblink用来报告数据库link相关的资源状态.

--The end


以上所述就是小编给大家介绍的《ORA-02020错误和db link相关参数介绍》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

TensorFlow:实战Google深度学习框架(第2版)

TensorFlow:实战Google深度学习框架(第2版)

顾思宇、梁博文、郑泽宇 / 电子工业出版社 / 2018-2-1 / 89

TensorFlow是谷歌2015年开源的主流深度学习框架,目前已得到广泛应用。《TensorFlow:实战Google深度学习框架(第2版)》为TensorFlow入门参考书,旨在帮助读者以快速、有效的方式上手TensorFlow和深度学习。书中省略了烦琐的数学模型推导,从实际应用问题出发,通过具体的TensorFlow示例介绍如何使用深度学习解决实际问题。书中包含深度学习的入门知识和大量实践经......一起来看看 《TensorFlow:实战Google深度学习框架(第2版)》 这本书的介绍吧!

图片转BASE64编码
图片转BASE64编码

在线图片转Base64编码工具

Base64 编码/解码
Base64 编码/解码

Base64 编码/解码

MD5 加密
MD5 加密

MD5 加密工具