码迷,mamicode.com
首页 > 数据库 > 详细

oracle 11g exp默认空表不导出 原因及解决方法

时间:2014-12-24 18:22:13      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:空表默认不导出 oracle11g

在oracle11g中,每张表在起初创建时,默认是不分配区段给此对象。

当首次插入数据时,会分配对应的区段。

对应控制参数为 deferred_segment_creation=true

如果要保持跟低版本保持一致的属性,可以设定此参数值为flase

alter system set deferred_segment_creation=false scope=both;

在后续创建的新表中,会默认分配区段。


如果参数值设定为true,即使在创建表时指定具体的存储参数来获取初始区段大小,也不会分配对应区段。

eg:

create table A_ALLOCAT_EXTENT

(

  userno   NUMBER,

  username VARCHAR2(20 CHAR)

)

tablespace USERS

  pctfree 10

  initrans 1

  maxtrans 255

  storage

  (

    initial 64K

    next 1M

    minextents 1

    maxextents unlimited

  );

SQL> select * from user_extents t where t.segment_name = ‘A_ALLOCAT_EXTENT‘;


no rows selected


在设定参数值为false后,需要把没有分配区段的表,增加区段。

获取没有分区的表名:

select table_name from user_tables

minus

select segment_name from user_segments 


然后执行分区语句进行分配:

alter table A_ALLOCAT_EXTENT allocate extent (size 8K); -- 大小自己定义

本文出自 “8016776” 博客,请务必保留此出处http://8026776.blog.51cto.com/8016776/1595534

oracle 11g exp默认空表不导出 原因及解决方法

标签:空表默认不导出 oracle11g

原文地址:http://8026776.blog.51cto.com/8016776/1595534

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