|
| Total Answers and Comments: 3 |
Last Update: June 04, 2008 Asked by: Robert |
|
| | |
|
Submitted by: ravgopal Analyze and perform statistics on whole schema. This will populate the statistics details about each table. You can pull NUM_ROWS column from all_tables to check whether it contains zero.
step1: exec dbms_stats.gather_database_stats;
Step2 : select table_name from all_tables where num_rows=0;
Above answer was rated as good by the following members: sr_2407 | Go To Top
|