Wednesday, August 22, 2012


Query to find the Outstanding Database Alerts in Oracle DB


TO know what are the top database Alerts, use the below query

SELECT To_Char(Creation_Time, 'DD-MM-YYYY HH24:MI') Creation_Time,instance_name,object_type,message_type,message_level,reason,suggested_action FROM
dba_outstanding_alerts ORDER BY Creation_Time;

No comments:

Post a Comment

Oracle Database & Applications R12.2 Log file locations

Many times, we forget the path for the log files since there are too many.  Below is the list of frequently used log files which can help us...