smacattack
Technical User
I have run query
select table_name,num_rows from user_tables;
The results don't show the number of rows.
How do i find out the number of rows in each table.
If you do a select count(*) on a single table it works!
Please help!
select table_name,num_rows from user_tables;
The results don't show the number of rows.
How do i find out the number of rows in each table.
If you do a select count(*) on a single table it works!
Please help!