oracle 11g空表导不出问题

Posted 雪山上的蒲公英

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle 11g空表导不出问题相关的知识,希望对你有一定的参考价值。

查询空表

select table_name from user_tables where num_rows=0

生成分配空间的执行语句

select alter table ||table_name|| allocate extent; from user_tables where num_rows=0 or num_rows is null

复制出来执行即可。

以上是关于oracle 11g空表导不出问题的主要内容,如果未能解决你的问题,请参考以下文章