oracle导不出空表的解决办法

Posted 一万年以前

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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导不出空表的解决办法的主要内容,如果未能解决你的问题,请参考以下文章

Oracle 11g导出空表少表的解决办法

Oracle 11g导出空表少表的解决办法

oracle11g导出表时会发现少表,空表导不出解决方案。

Oracle11g在使用exp导出时不导出空表问题的解决办法

Oracle 11g导出空表少表的解决办法

oracle 11g空表导不出问题