返回顶部
首页 > 资讯 > 数据库 >Oracle存储过程报错ORA-02069: global_names parameter must be set to TRUE for this operation
  • 819
分享到

Oracle存储过程报错ORA-02069: global_names parameter must be set to TRUE for this operation

2024-04-02 19:04:59 819人浏览 八月长安
摘要

今天开发给发邮件过来说一个存储过程想通过dblink往目标库insert数据,但报错ORA-02069: global_names parameter must be set to TRUE for thi

今天开发给发邮件过来说一个存储过程想通过dblink往目标库insert数据,但报错ORA-02069: global_names parameter must be set to TRUE for this operation,想让我根据错误提示在数据库上修改global_names参数修改为True。

先来看看官方文档是如何介绍这个参数的:

GLOBAL_NAMES specifies whether a database link is required to have the same name as the database to which it connects.
If the value of GLOBAL_NAMES is false, then no check is perfORMed. If you use or plan to use distributed processing, then oracle recommends that you set this parameter to true to ensure the use of consistent naming conventions for databases and links in a networked environment.

从下面的查询可以看出global_names参数可以在线进行修改的

zx@TEST>col name for a30
zx@TEST>select name,ISSES_MODIFIABLE,ISSYS_MODIFIABLE from v$parameter where name='global_names';

NAME			       ISSES_MODIFIABL ISSYS_MODIFIABLE
------------------------------ --------------- ---------------------------
global_names		       TRUE	       IMMEDIATE

看完了这个参数,再来看看开发的存储过程代码,其中insert语句中是用到了一个序列,所以导致了这个报错。先在测试数据库上创建了一个简单的存储过程来模拟现再这个问题

创建一个dblink

zx@TEST>create database link link_orcl connect to zx identified by "zx" using 'orcl';

Database link created.

zx@TEST>select * from dual@link_orcl;

DUM
---
X

先创建一个不带序列的远程insert的存储过程

zx@TEST>create or replace procedure pro_a as
  2  begin
  3  insert into t2@link_orcl (c1) values('a');
  4  commit;
  5  end;
  6  /

Procedure created.

执行这个存储过程,观察结果,数据可以正常插入

zx@TEST>select * from t2@link_orcl;

no rows selected

zx@TEST>exec pro_a;

PL/sql procedure successfully completed.

zx@TEST>select c1 from t2@link_orcl;

C1
---
a

创建一个序列,并修改上面的存储过程

zx@TEST>create sequence seq_a;

Sequence created.

zx@TEST>create or replace procedure pro_a as
  2  begin
  3  insert into t2@link_orcl (c1,n1) values('a',seq_a.nextval);
  4  commit;
  5  end;
  6  /
  
Procedure created.

执行修改后的存储过程,重现上面的错误ORA-02069

zx@TEST>exec pro_a;
BEGIN pro_a; END;

*
ERROR at line 1:
ORA-02069: global_names parameter must be set to TRUE for this operation
ORA-06512: at "ZX.PRO_A", line 3
ORA-06512: at line 1

先在session层面修改global_names参数,再次执行存储过程,又出现了新的错误:说两端的数据库名不一致。

zx@TEST>alter session set global_names = true;

Session altered.

zx@TEST>exec pro_a;
BEGIN pro_a; END;

*
ERROR at line 1:
ORA-02085: database link LINK_ORCL connects to ORCL
ORA-06512: at "ZX.PRO_A", line 3
ORA-06512: at line 1

zx@TEST>!oerr ora 2085
02085, 00000, "database link %s connects to %s"
// *Cause: a database link connected to a database with a different name.
//  The connection is rejected.
// *Action: create a database link with the same name as the database it
//  connects to, or set global_names=false.

那现在问题来了,实际生产中源端和目标端的数据库名肯定是不一致的,所以修改这个参数并不能解决这个问题。

只能想其他的办法来绕过这个错误,这里给开发提了两个建议:

1、把存储过程部署到目标端来避免远程insert中调用sequence

2、在源端存储过程中引入临时表,先把数据插入临时表,再从临时表插入到远端表。


在MOS上搜到了一个相关文档(ORA-02069 DURING REMOTE INSERT OF A LOCAL SEQUENCE (文档 ID 1047673.6))跟我们的问题描述一致。


官方文档:Http://docs.oracle.com/cd/E11882_01/server.112/e40402/initparams098.htm#REFRN10065


您可能感兴趣的文档:

--结束END--

本文标题: Oracle存储过程报错ORA-02069: global_names parameter must be set to TRUE for this operation

本文链接: https://lsjlt.com/news/39990.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作