define row size of a table [message #212379] |
Fri, 05 January 2007 01:12 |
moorthygs
Messages: 3 Registered: January 2007 Location: Chennai
|
Junior Member |
|
|
Hi All,
I want to create a table in my database.
How to define the rowsize for that table.
What are the things to be taken care for creating a new table.
Thanks in Advance
Cheers,
Moorthy.GS
|
|
|
|
Re: define row size of a table [message #212444 is a reply to message #212379] |
Fri, 05 January 2007 05:38 |
vijaykasi
Messages: 11 Registered: January 2007 Location: London
|
Junior Member |
|
|
You can use below query to find average rowsize for each column
select avg(nvl(vsize(column_name), 0)) "Space of an average row",
count(*) "Number of Rows"
from table_name;
|
|
|