Files
oracle/tpt/aot/fatal_bg_proc.sql
2026-03-12 21:23:47 +01:00

10 lines
332 B
SQL

-- 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
/