Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: table size
Hi,
take a look at the dba_extents view where you can get your information , as
:
select sum(bytes) /1024/1024 , sum(blocks)
from dba_extents
where segment_name='your table name'
it wiil give you the size used by your table...
Hope it'll help you..
Fei Sha wrote in message <714dvs$g93$1_at_venus.uvsq.fr>...
>Hi everyone,
> How to know the size of a table in Mb or number of blocks?
>Thank!
>
>Fei
>
>
>
Received on Wed Oct 28 1998 - 05:45:24 CST
![]() |
![]() |