Oracle Scripts

How Can I See Error In Oracle Database

Q : How Can I See Error In Oracle Database

SELECT ORIGINATING_TIMESTAMP AS "DATE",
       MESSAGE_TEXT          AS "TEXT",
       MESSAGE_LEVEL         AS "LEVEL",     --1: CRITICAL
                                             --2: SEVERE
                                             --8: IMPORTANT
                                             --16: NORMAL
       MESSAGE_TYPE          AS "TYPE",      --1: UNKNOWN
                                             --2: INCIDENT_ERROR
                                             --3: ERROR
                                             --4: WARNING
                                             --5: NOTIFICATION
                                             --6: TRACE
       HOST_ID               AS "SERVER",
       HOST_ADDRESS          AS "IPADDRESS"
  FROM v$diag_alert_ext
 WHERE     ORIGINATING_TIMESTAMP BETWEEN TO_DATE ('16.03.2020 00:00',
                                                  'DD.MM.YYYY HH24:MI')
                                     AND TO_DATE ('17.03.2020 18:01',
                                                  'DD.MM.YYYY HH24:MI')
       AND MESSAGE_TEXT LIKE 'ORA-%'
Tags

Notice: Trying to access array offset on value of type bool in /home/wwwbugra/public_html/wp-content/themes/jannah/framework/classes/class-tielabs-filters.php on line 340

Notice: Trying to access array offset on value of type bool in /home/wwwbugra/public_html/wp-content/themes/jannah/framework/classes/class-tielabs-filters.php on line 340

Notice: Trying to access array offset on value of type bool in /home/wwwbugra/public_html/wp-content/themes/jannah/framework/functions/media-functions.php on line 114

Notice: Trying to access array offset on value of type bool in /home/wwwbugra/public_html/wp-content/themes/jannah/framework/classes/class-tielabs-filters.php on line 340

Notice: Trying to access array offset on value of type bool in /home/wwwbugra/public_html/wp-content/themes/jannah/framework/functions/media-functions.php on line 114

Bugra Parlayan

I use this blog in my spare time to jot down thoughts and share my professional experiences. It’s my personal space to unwind and reflect. Feel free to share or reuse anything you find helpful here — just a small thank you is more than enough :) You can reach me at: bugra[@]bugraparlayan.com.tr

Related Articles

Leave a Reply


Notice: Trying to access array offset on value of type bool in /home/wwwbugra/public_html/wp-content/themes/jannah/framework/classes/class-tielabs-filters.php on line 340

Notice: Trying to access array offset on value of type bool in /home/wwwbugra/public_html/wp-content/themes/jannah/framework/functions/media-functions.php on line 114

Notice: Trying to access array offset on value of type bool in /home/wwwbugra/public_html/wp-content/themes/jannah/framework/classes/class-tielabs-filters.php on line 340

Notice: Trying to access array offset on value of type bool in /home/wwwbugra/public_html/wp-content/themes/jannah/framework/functions/media-functions.php on line 114
Back to top button
Close