建表时表空间的一些参数pctfree initrans maxtrans storage的含义

转自:https://a475334705.iteye.com/blog/2291441

create table X_SMALL_AREA 

  idx_id             NUMBER(20) not null,
   pss_idx_id NUMBER(20),
   update_log    VARCHAR2(512),
   update_date    DATE,
   constraint PK_PSS_LOG primary key (idx_id),
   constraint FK_PSS_LOG foreign key (pss_idx_id)
      references POFS_SERIAL_SYSTEM (idx_id)

tablespace TBSL_SDDQ --表段X_SMALL_AREA放在表空间TBSL_SDDQ中
  pctfree 10 --块保留10%的空间留给更新该块数据使用
  initrans 1 --初始化事务槽的个数
  maxtrans 255 --最大事务槽的个数
  storage --存储参数
  ( 
    initial 64k --区段(extent)一次扩展64k
    minextents 1 --最小区段数
    maxextents unlimited --最大区段无限制 
  ); 

原文地址:https://www.cnblogs.com/sharpest/p/11074605.html