Files
oracle/tpt/aot/fatal_bg_proc.sql

10 lines
332 B
MySQL
Raw Normal View History

2026-03-12 21:23:47 +01:00
-- a simple script for (hopefully) showing just the "fatal" background
-- processes. when these processes disappear, it will bring the whole
-- database instance down. other processes are typically just restarted
SELECT indx,ksuprpnm,TO_CHAR(ksuprflg,'XXXXXXXXXXXXXXXX')
FROM x$ksupr
WHERE BITAND(ksuprflg,4) = 4 ORDER BY indx
/