Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Easy way to get size of an index?

Re: Easy way to get size of an index?

From: Maurice E. Jarrell <mejarrell_at_worldnet.att.net>
Date: 24 Oct 1999 17:30:22 -0500
Message-ID: <wk4sfg9ytd.fsf@worldnet.att.net>


Try something like:

select segment_name, sum(bytes) bytes
from dba_segments
where segment_name = <YOUR_INDEX>
and owner = <YOUR_OWNER>;

Also check the "Sever Reference Manual" for a *brief* explanation of the dba_* views.

Sincerely,
Maury Received on Sun Oct 24 1999 - 17:30:22 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US