oracle11g不能导出空表

时间:2014-01-20 22:52:20   收藏:0   阅读:443

oracle11g不能导出空表,导致没有数据的空表无法备份。

 

1.用以下这句查找空表

   select table_name  from user_tables where num_rows= 0

2.强制分配

   alter table tablename allocate extent

3.为了后面创建的表能直接分配segment

  alter system set deferred_segment_creation=false

原文:http://blog.csdn.net/wang_cel/article/details/18465797

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!