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

Home -> Community -> Usenet -> c.d.o.misc -> Re: Size of data

Re: Size of data

From: Sybrand Bakker <postbus_at_sybrandb.demon.nl>
Date: Mon, 3 Apr 2000 08:52:26 +0200
Message-ID: <954746176.29867.1.pluto.d4ee154e@news.demon.nl>


Allocated or really in use.
Allocated:
select sum(bytes)/1048576 -- 1M
from user_segments
where segment_name = '<your table name>' /
Occupied
You'll need to analyze <table_name> compute statistics and select * from user_tables where table_name = '<your table name>'

Hth,

Sybrand Bakker, Oracle DBA

AM <a.metzger_at_anti-spam.nmg.fr> wrote in message news:38E83DEB.4FAE81D7_at_anti-spam.nmg.fr...
>
> Hi,
>
> I have one table with a lot of data. How can I know the all size
> occupied by my data ?
>
> Regards,
> --
> Please answer to : a.metzger_at_nmg.fr
>
>
Received on Mon Apr 03 2000 - 01:52:26 CDT

Original text of this message

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