I have been trying to figure this out for a while. I want to know how many data blocks are being used by my tables. The tables have a huge number of rows, around 200,000. But when I run the following query:
select table_name, blocks from all_tables where owner='me';
I get the following output :
TABLE1 0
TABLE2 0
TABLE3 0
and so on for all my tables. Why is this so? Is the total used data blocks not being read properly, or is there something that needs to be done to correct it?