1、分析当前登录用户的表
select 'analyze table ' || table_name|| ' COMPUTE STATISTICS;' from all_tables where owner='STANDARD_DB1123'
2、执行第1步查询结果
3、统计表内数据量
select table_name,num_rows from user_tables order by num_rows desc;
1、分析当前登录用户的表
select 'analyze table ' || table_name|| ' COMPUTE STATISTICS;' from all_tables where owner='STANDARD_DB1123'
2、执行第1步查询结果
3、统计表内数据量
select table_name,num_rows from user_tables order by num_rows desc;