forked from tanelpoder/tpt-oracle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bhdo.sql
58 lines (56 loc) · 819 Bytes
/
bhdo.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
-- Copyright 2018 Tanel Poder. All rights reserved. More info at http://tanelpoder.com
-- Licensed under the Apache License, Version 2.0. See LICENSE.txt for terms & conditions.
SELECT
hladdr
-- , blsiz
-- , nxt_hash
-- , prv_hash
-- , nxt_repl
-- , prv_repl
, flag
, rflag
, sflag
, lru_flag
, ts#
, file#
-- , dbarfil
, dbablk
, class
, state
, mode_held
, changes
, cstate
, le_addr
, dirty_queue
, set_ds
, obj
, ba
, cr_scn_bas
, cr_scn_wrp
, cr_xid_usn
, cr_xid_slt
, cr_xid_sqn
, cr_uba_fil
, cr_uba_blk
, cr_uba_seq
, cr_uba_rec
, cr_sfl
, cr_cls_bas
, cr_cls_wrp
, lrba_seq
, lrba_bno
, hscn_bas
, hscn_wrp
, hsub_scn
, us_nxt
, us_prv
, wa_nxt
, wa_prv
, obj_flag
, tch
, tim
FROM
x$bh
WHERE
obj IN (&1)
/