DBA Data[Home] [Help]

VIEW: SYS.TABCOMPARTV$

Source

View Text - Preformatted

select obj#, dataobj#, bo#,
          row_number() over (partition by bo# order by part#),
          hiboundlen, hiboundval, subpartcnt, flags, defts#, defpctfree,
          defpctused, definitrans, defmaxtrans, definiexts,
          defextsize, defminexts, defmaxexts,defmaxsize,
          defextpct, deflists, defgroups,
          deflogging, defbufpool, analyzetime, samplesize, rowcnt, blkcnt,
          empcnt, avgspc, chncnt, avgrln, spare1, spare2, spare3, part#
from tabcompart$
where bitand(flags, 8388608) = 0           /* filter out hidden partitions */
View Text - HTML Formatted

SELECT OBJ#
, DATAOBJ#
, BO#
, ROW_NUMBER() OVER (PARTITION BY BO# ORDER BY PART#)
, HIBOUNDLEN
, HIBOUNDVAL
, SUBPARTCNT
, FLAGS
, DEFTS#
, DEFPCTFREE
, DEFPCTUSED
, DEFINITRANS
, DEFMAXTRANS
, DEFINIEXTS
, DEFEXTSIZE
, DEFMINEXTS
, DEFMAXEXTS
, DEFMAXSIZE
, DEFEXTPCT
, DEFLISTS
, DEFGROUPS
, DEFLOGGING
, DEFBUFPOOL
, ANALYZETIME
, SAMPLESIZE
, ROWCNT
, BLKCNT
, EMPCNT
, AVGSPC
, CHNCNT
, AVGRLN
, SPARE1
, SPARE2
, SPARE3
, PART# FROM TABCOMPART$ WHERE BITAND(FLAGS
, 8388608) = 0 /* FILTER OUT HIDDEN PARTITIONS */