select
nvl(s.FILE#,0),
nvl(s.BLOCK#,0),
s.TYPE#,
s.TS#,
s.MAXEXTS,
s.EXTENTS
from
sys.seg$ s,
sys.file$ f
where
s.ts# = f.ts# and
s.file# = f.relfile# and
f.file# = 76 and
s.block# = 120872
;
BTW, seg$ is not a view, its a table!!
Rgds
Abhay.
Last edited by abhaysk; 06-13-2006 at 06:47 AM.
funky...
"I Dont Want To Follow A Path, I would Rather Go Where There Is No Path And Leave A Trail."
"Ego is the worst thing many have, try to overcome it & you will be the best, if not good, person on this earth"
SQL> select nvl(FILE#,0),nvl(BLOCK#,0),TYPE#,TS#,MAXEXTS,EXTENTS
2 from sys.seg$
3 where file#='76' or block#='120872'
4 and nvl(MAXEXTS-EXTENTS,0)<=4 and nvl(MAXEXTS-EXTENTS,0)>=0;
Bookmarks