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;
copy出来执行。。。。更新user_tables的num_rows
2.
select * from user_tables where num_rows =0 ;
上一篇: MySQL 事务管理