2026-03-12 20:23:15

This commit is contained in:
root
2026-03-12 21:23:47 +01:00
parent eab4b36eca
commit 93039b8489
3332 changed files with 699614 additions and 0 deletions

20
tpt/bhfp.sql Normal file
View File

@@ -0,0 +1,20 @@
SELECT
obj
, class
, decode(state,0,'free',1,'xcur',2,'scur',3,'cr', 4,'read',5,'mrec'
,6,'irec',7,'write',8,'pi', 9,'memory',10,'mwrite'
,11,'donated', 12,'protected', 13,'securefile', 14
,'siop',15,'recckpt', 16, 'flashfree', 17, 'flashcur', 18, 'flashna') state
, hladdr
, cr_rfcnt
, shr_rfcnt
, fp_whr
, fp_scn_bas
, fp_scn_wrp
FROM
x$bh
WHERE
cr_rfcnt + shr_rfcnt > 0
AND (&1)
/