SIZE OF TABLES IN TABLESPACE [message #61371] |
Sun, 18 April 2004 12:16 |
soumya rajendran
Messages: 1 Registered: April 2004
|
Junior Member |
|
|
hi experts
how can i calculate the physical size of a perticular table in a tablespace and how much space allocated in a tablespace or how much free space remaining for a specific tablespace in percentage or in mb
thanks in advance
|
|
|
Re: SIZE OF TABLES IN TABLESPACE [message #61373 is a reply to message #61371] |
Sun, 18 April 2004 18:45 |
Raj
Messages: 411 Registered: November 1998
|
Senior Member |
|
|
Of the many ways to do this, one of the ways is to
select sum(vsize(col1)) +
sum(vsize(col2)) + ....
from table1
THis will give you the information in bytes
|
|
|
|