博客文章除注明转载外,均为原创。转载请注明出处。
如果遇到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相关的参数,分别是:
open_links和 open_links_per_instance ,前者使指定每个会话(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
阅读(5228) | 评论(0) | 转发(0) |