ORA-00604: error occurred at recursive SQL level 1

Example :

SQL> alter user u1 identified by u1
2 / 
alter user u1 identified by u1
*
ERROR at line 1:
ORA-00604: error occurred at recursive SQL level 1
ORA-06502: PL/SQL: numeric or value error: character string buffer too small
ORA-06512: at line 6
 

Solution :

SQL> alter system set "_system_trig_enabled"=FALSE;
 
System altered.
 
 
Enjoy 
 
Osama Mustafa  

One thought on “ORA-00604: error occurred at recursive SQL level 1

  1. Thanks, Osama! I was trying to log in as a schema user in order to create a fixed user database link and got these two errors. Running your Alter system command did the trick!Regards,Jason

    Like

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.