码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2018-07-18 13:59:08      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:生成   echo   不能导出   针对   命令   table   out   建立   create   

--根据上述查询,可以构建针对空表分配空间的命令语句,如下:
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导出时,空表不能导出问题

标签:生成   echo   不能导出   针对   命令   table   out   建立   create   

原文地址:https://www.cnblogs.com/li-sx/p/9328434.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!