Link to home
Start Free TrialLog in
Avatar of rkayondo
rkayondo

asked on

Ora alert error

I receive the following error on opening(alter database open;) my recovered database
-----------
 ORA-00604: error occurred at recursive SQL level 1
 ORA-06553: PLS-801: internal error [56319]
----------
I realised that I can't even create a user/tablespace/datafile in this recovered database. The same error appears.

Thanks in advance.
Richard
Avatar of mjblake
mjblake

What version of Oracle?

When you say recovered, do you mean it crashed and you used RMAN to restore then performed recovery?  Please explain what you mean by recovered.

Did this database work ok before being recovered?

Avatar of schwertner
There may be many reason for this.

Try to rerun catalog.sql, catproc.sql and utlrp.sql
You did not say what Oracle version but MetaLink had this post.

There was a versioning mismatch in 816 that was returning this error and the issue was handled in an unpublished Bug 1713820.
To resolve this issue, please apply the 8.1.6.3 patchset(ID:514510 Patchset::1633867 ).
PL/SQL: internal error, arguments: [56319], [], [], [], [], [], [], []
Avatar of rkayondo

ASKER

Thanks for all your help, but I haven't got a solution yet. Sorry about missing details.
I am running Oracle9i Enterprise Edition Release 9.0.1.1.0 - 64bit Production on SunOS 5.8.
I did a hot backup to disk of the production database, running the same version of Oracle and OS as the test system.
Then used the most recent backed up controlfile to restore/recover the database. I didn't use RMAN.

I have tried running catalog.sql, catproc.sql and utlrp.sql as sys, but I still get the same error;
-----------
 ORA-00604: error occurred at recursive SQL level 1
 ORA-06553: PLS-801: internal error [56319]
----------
On all create statements.

Thanks again for your help in advance.

Richard.
check the alert<sid>.ora log for more details.

This is the most recent error in alert_TEST.log.
------
Wed Apr  7 08:45:13 2004
ORA-00604: error occurred at recursive SQL level 1
ORA-06553: PLS-801: internal error [56319]
-----
Is there anything above or below it? Did you check the trace files as well?
Increase the SHARED POOL size of your server.

If Export works fine you have to be prepared to do full Export (setting NLS_LANG env. variable), to reinstall Oracle and to do Import.
If possible try to experiment on other machine first.
ASKER CERTIFIED SOLUTION
Avatar of fmonroy
fmonroy
Flag of Mexico image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thank you all.