为啥我的新用户无法在 SQL Developer 中创建新连接?

Posted

技术标签:

【中文标题】为啥我的新用户无法在 SQL Developer 中创建新连接?【英文标题】:Why i can not create new connection by my new user in SQL Developer?为什么我的新用户无法在 SQL Developer 中创建新连接? 【发布时间】:2019-11-09 11:27:43 【问题描述】:

当我由我的新用户创建新连接时,会发生此错误: enter image description here

状态:失败 - 测试失败:ORA-00604:递归发生错误 SQL 级别 1 ORA-02003:无效的 USERENV 参数 ORA-06512:在第 2 行

感谢帮助

【问题讨论】:

数据库上有登录触发器吗? 不,我没有登录触发器 【参考方案1】:

你那里没有登录触发器吗? 可能没有创建一个,但其他人可能已经创建了。例如:

SQL> create user demo identified by demo;

User created.

SQL> grant create session to demo;

Grant succeeded.

SQL> conn demo/demo
Connected.

--
-- so far, so good, now lets create a bad trigger
--

SQL> conn system/admin
Connected.

SQL> create or replace
  2  trigger BAD_TRIGGER
  3  after logon on database
  4  begin
  5    if sys_context('USERENV','JUNK') = 'x' then
  6       null;
  7    end if;
  8  end;
  9  /

SQL> conn demo/demo
ERROR:
ORA-04088: error during execution of trigger 'SYSTEM.BAD_TRIGGER'
ORA-00604: error occurred at recursive SQL level 1
ORA-02003: invalid USERENV parameter
ORA-06512: at "SYS.STANDARD", line 530
ORA-06512: at line 2

所以管理员可能在你不知情的情况下这样做了?

【讨论】:

以上是关于为啥我的新用户无法在 SQL Developer 中创建新连接?的主要内容,如果未能解决你的问题,请参考以下文章

Oracle SQL Developer下为啥看不到别人授权给我的表?

我的 VB.Net 代码中出现 PL SQL 错误,但无法在 SQL Developer 中重现

pl/sql developer中文乱码,为啥呢?怎么解决?Oracle问题

pl/sql developer中文乱码,为啥呢?怎么解决?Oracle问题

我无法弄清楚为啥我的数组列表没有使用我所说的新值进行更新

为啥 PHP 无法识别我的用户 DSN?