Learn About Internal Error Check Logs In Brief

Asked By 0 points N/A Posted on -
qa-featured

Hi all,
I am trying to access Oracle 11g Enterprise console but keep getting the error internal error check logs.

 
Here is the screenshot of the error:

 

Is there any way to resolve this problem?

SHARE
Answered By 0 points N/A #299071

Learn About Internal Error Check Logs In Brief

qa-featured

The query that you mention here confirms that FAILED_LOGON_TRG is not working.

 

To fix this, disable the trigger by running this command

Alter trigger SYS.FAILED_LOGON_TRG disable;

It must not do any harm as it doesn’t already work.

After that, just try to access enterprise manager.

 

Then, revert the trigger back by executing this command:

alter trigger SYS.FAILED_LOGON_TRG enable;

Related Questions