解决11g导出时,空表不能导出问题

Posted li-sx

tags:

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

--根据上述查询,可以构建针对空表分配空间的命令语句,如下:
Select ‘alter table ‘||table_name||‘ allocate extent;‘ from user_tables where num_rows=0

--批量输出上述生成的SQL语句,建立C:createsql.sql,其内容如下:
set heading off;
set echo off;
set feedback off;
set termout on;
spool d:/dropobj.sql;
--Select ‘alter table ‘||table_name||‘ allocate extent;‘ from user_tables where num_rows=0;
Select ‘alter table ‘ || table_name || ‘ allocate extent;‘ From user_tables where segment_created= ‘NO‘;
spool off;

--执行C:createsql.sql,命令如下:
@@d:/dropobj.sql;
host del d:/dropobj.sql;

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

oracle 11g使用exp导出空表问题解决办法

处理Oracle 11g在用EXP导出时,空表不能导出

[转]轻松解决oracle11g 空表不能exp导出的问题

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

轻松解决oracle11g 空表不能exp导出的问题。

oracle 11g不能导出空表的解决方法