oracle 11g空表导不出问题

前端之家收集整理的这篇文章主要介绍了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相关文章