首页 > 代码库 > oracle导不出空表的解决办法
oracle导不出空表的解决办法
1.先进行表分析(一定要执行此步,否则查询空表可能不准确)
select ‘analyze table ‘||table_name||‘ compute statistics;‘ from user_tables;
2.再查询哪些表是空的(此步可以省略,直接进行第三步)
select table_name from user_tables where NUM_ROWS=0 order by table_name;
3.最后生成alert语句
select ‘alter table ‘||table_name||‘ allocate extent;‘ from user_tables where num_rows=0 order by table_name;
oracle导不出空表的解决办法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。