sys.x$dbgalertext alert log info text access [message #683518] |
Mon, 25 January 2021 09:43 |
wtolentino
Messages: 421 Registered: March 2005
|
Senior Member |
|
|
I am attempting to query the alert log view/table thru sys.x$dbgalertext. I found out that I had no access to it. I tried to check if the view/table exist thru the dba_objects. It appears to be it does not exists on the dba_objects view but I know somehow that object exists and I just don't have access to it.
SQL> describe sys.x$dbgalertext;
ERROR:
ORA-04043: object sys.x$dbgalertext does not exist
SQL> select count(*) from dba_objects where object_name like '%DBGALERTTEXT%';
COUNT(*)
----------
0
SQL>
I have a dba access but not a sys or sysdba access. I know that somehow I had to request an access for it from our "infrastructure dba group" and I just want to be sure that sys.x$dbgalertext exists. Please advise.
Thank you.
|
|
|
|
|
|