Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> count of obj
Hi All,
Can somebody give a simple query to find
the count(*) of objects which have size >1 Gig
its not this.
select segment_name, round(sum(bytes)/1024/1024/1024) from dba_segmnets
group by segment_name
having round(sum(bytes)/1024/1024/1024) >1;
Need just count(*) of objects in the db > 1Gig size
Tx and Regards,
Srinivas