I have Some Problem regarding getting row count .. If I do
select NUM_ROWS,table_name from dba_tables;
I can get all tables and records count .. the problem is Suppose TABLE_NAMEE is my table name and I have 50 records and I have deleted 20 Records. When I do
select count(*) from TABLE_NAMEE;
I am getting 30 records but when I do
select NUM_ROWS from dba_tables where table_name ='TABLE_NAMEE';
I am getting 50 records as my DB people update schema Once in every month . So how can I get all table names and their respective row count in ORACLE without using dba_tables , tab but I can use them for fetching table names not for row count ..