欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Oracle查询出所有空表

程序员文章站 2022-01-07 09:47:24
1.分析所有表 select 'analyze table '||table_name||' compute statistics;' from user_tables; copy出来执行。。。。更新user_tables的num_rows 2. select * FROM user_tables ......

 

1.分析所有表

 

select 'analyze table '||table_name||' compute statistics;' from user_tables;

Oracle查询出所有空表

copy出来执行。。。。更新user_tables的num_rows

Oracle查询出所有空表

 

 2.

   select * from user_tables where num_rows =0 ;

Oracle查询出所有空表