cancel
Showing results for 
Search instead for 
Did you mean: 

Table Size

Former Member
0 Kudos

Hi,

How I can find exact table size.

Oracle 10G and ECC 6.0.

Thanks in advance.

Regards,

Rahul.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hello Rahul,

Go to T-Code DB02,it will give you all the details

Rohit

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Thanks.

From db02 i will get total tble size but i need exact table oocupied size. Kindly help.

Regards,

Rahul.

Former Member
0 Kudos

If you are trying to find table size for any particular table...

just a thought , Why don't you try from Oracle level....

select sum(BYTES/1024/1024) as TOTAL_GIG from user_segments where

SEGMENT_NAME = 'TABLE_NAME';