Oracle Initialization Parameters:DEFERRED_SEGMENT_CREATION

转自 http://blog.csdn.net/dbaheng/article/details/14450275

备注: 对11.2.0.x 有效

 

官方文档的说明:
DEFERRED_SEGMENT_CREATION


Property                Description
Parameter typeBoolean
Default value  true
Modifiable        ALTER SESSION, ALTER SYSTEM
Range of valuestrue | false
Basic                No
         DEFERRED_SEGMENT_CREATION specifies the semantics of deferred segment creation. If set to true, then segments for tables and their dependent objects (LOBs, indexes) will not be created until the first row is inserted into the table.
         Before creating a set of tables, if it is known that a significant number of them will not be populated, then consider setting this parameter to true. This saves disk space and minimizes install time.

  1.   

 

         DEFERRED_SEGMENT_CREATION具体指segment延迟创建,如果DEFERRED_SEGMENT_CREATION的值时true,则当table创建时,该table以及依赖它的lob,index的segment都不会创建,知道第一行记录插入到该table。DEFERRED_SEGMENT_CREATION 参数从11.2.0.1引进,默认值为true;如果要使其恢复老版本功能,设置该参数为false.

        DEFERRED_SEGMENT_CREATION效果验证:

 

  1. SQL>select * from v$version;  
  2.   
  3. BANNER  
  4. --------------------------------------------------------------------------------  
  5. Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production  
  6. PL/SQL Release 11.2.0.3.0 - Production  
  7. CORE    11.2.0.3.0      Production  
  8. TNS for Linux: Version 11.2.0.3.0 - Production  
  9. NLSRTL Version 11.2.0.3.0 - Production  
  10.   
  11. SQL>show parameter DEFERRED_SEGMENT_CREATION  
  12.   
  13. NAME                                 TYPE        VALUE  
  14. ------------------------------------ ----------- ------------------------------  
  15. deferred_segment_creation            boolean     TRUE  
  16.   
  17. SQL>create table t_hh (id number,name varchar2(10));  
  18.   
  19. Table created.  
  20.   
  21. SQL>create index ind_t_hh_id on t_hh(id);  
  22.   
  23. Index created.  
  24.   
  25. SQL>Select segment_name,segment_type from user_segments where segment_name in ('T_HH','IND_T_HH_ID');  
  26.   
  27. no rows selected  
  28.   
  29.   
  30. SQL>insert into t_hh values(998,'hengheng');  
  31.   
  32. 1 row created.  
  33.   
  34. SQL>Select segment_name,segment_type from user_segments where segment_name in ('T_HH','IND_T_HH_ID');  
  35.   
  36. SEGMENT_NAME                                                                      SEGMENT_TYPE  
  37. --------------------------------------------------------------------------------- ------------------  
  38. T_HH                                                                              TABLE  
  39. IND_T_HH_ID                                                                       INDEX  


    这里我们可以看到,当insert发生的时候,数据库会给该表创建segment并分配extent,无论该insert 操作是commit or rollback。but,deferred_segment_creation 参数对sys,system用户是无效的,下面我们来验证下:

 

 

  1. SQL>show user  
  2. USER is "SYS"  
  3. SQL>create table t_sys_hh (id number,name varchar2(10));  
  4.   
  5. Table created.  
  6.   
  7. Elapsed: 00:00:00.17  
  8. SQL>Select segment_name,segment_type from dba_segments where segment_name = 'T_SYS_HH';  
  9.   
  10. SEGMENT_NAME                                                                      SEGMENT_TYPE  
  11. --------------------------------------------------------------------------------- ------------------  
  12. T_SYS_HH                                                                          TABLE  

   

 

    对于古老的导出工具exp来说,我们无法导出没有segment的表,故在exp之前需要给表分配extent,可以用:alter table tablename allocate extent; 

posted @ 2013-12-30 01:04  princessd8251  阅读(223)  评论(0编辑  收藏  举报