Estimating & Projecting the size of a table in Oracle
Posted by decipherinfosys on January 24, 2007
The ONLY way to really accurately size a table (and project it’s future growth) is to load it with a small percentage of the real data, analyze it, and multiply. You can use Tom Kyte’s (asktom.com) show_space code to help you with the #of blocks evaluation or just use a plain simple technique shown below. Many people just use the average rowlength (avg_row_len column) in order to ascertain the size after doing a CTAS (Create Table AS)…however, that is not accurate as we will show below:
Example:
SQL> CREATE TABLE TEST AS SELECT * FROM ALL_OBJECTS;
Table created.
EXEC DBMS_STATS.GATHER_TABLE_STATS( USER, ‘TEST’);
SELECT NUM_ROWS, BLOCKS, EMPTY_BLOCKS, AVG_ROW_LEN
FROM USER_TABLES
WHERE TABLE_NAME = ‘TEST’
/
NUM_ROWS BLOCKS EMPTY_BLOCKS AVG_ROW_LEN
———- ———- ———— ———–
183546 2694 0 98
So, the average rowlength is being reported as 98.
The “right” and the only sure-shot way of calculating the size would be to calculate using these steps:
1) We check on the existing schemas and that will give us the tables filled with representative data (say expected volume for one of the schemas for a large table is say 1 million rows – we check the # of blocks for n number of rows).
2) Collect DBMS_STATS.
3) Check the number of blocks.
4) Then multiply by the multiplying factor i.e. if we estimated for say 1% of the actual requirement, multiply by 100
Example (Same table from above):
SQL>
SQL> compute sum of blocks on report
SQL> break on report
SQL> select extent_id, bytes, blocks
2 from user_extents
3 where segment_name = ‘TEST’
4 and segment_type = ‘TABLE’
5 /
–FYI: Results abridged for easy reading
EXTENT_ID BYTES BLOCKS
———- ———- ———-
330 65536 8
331 65536 8
332 65536 8
333 65536 8
334 65536 8
335 65536 8
336 65536 8
———-
sum 2696
SQL> select blocks, empty_blocks,
2 avg_space, num_freelist_blocks
3 from user_tables
4 where table_name = ‘TEST’
5 /
BLOCKS EMPTY_BLOCKS AVG_SPACE NUM_FREELIST_BLOCKS
———- ———— ———- ——————-
2694 0 0 0
So :
1) We have 2696 blocks allocated to the table TEST.
2) 0 blocks are empty (of course – in this example that is bound to happen – not in reality though).
3) 2694 blocks contain data (the other 2 are used by the system).
4) Average of 0k is free on each block used.
So,
1) Our table TEST consumes 2694 blocks of storage in total for 183546 records.
2) Out of this : 2694 * 8k blocksize – (2694 * 0k free) = 21552k is used for our data.
The calculation from the average row-length would have yielded : 183546 * 98 = ~17566k (see the difference ?).
Also, now that we have the calculation, if the actual table TEST needs to be sized for say 10 million records, then we use the multiplying factor for it :
183546 records take —> 21552 k
10 million will take —-> (21552k * 10 million) / 183546
That way, you will be assured that the data calculations are correct. Likewise for the indexes. Oracle Guru Tom Kyte has a lot of very good examples on his site that you should read before you embark on your sizing calculators for an Oracle Schema.
Sorry, the comment form is closed at this time.

