tablespace CADADATA
  pctfree 10
  initrans 1
  maxtrans 255
  storage
  (
    initial 2
    minextents 1
    maxextents unlimited
  );
-- Create/Recreate primary, unique and foreign key constraints 
alter table APPROVE
  add constraint PK_APPROVE primary key (受理编号)
  using index 
  tablespace CADADATA
  pctfree 10
  initrans 2
  maxtrans 255
  storage
  (
    initial 256K
    minextents 1
    maxextents unlimited
  );
alter table APPROVE
  add constraint UK_APPROVE_ID0 unique (ID0)
  using index 
  tablespace CADADATA
  pctfree 10
  initrans 2
  maxtrans 255
  storage
  (
    initial 128K
    minextents 1
    maxextents unlimited
  );
这是神马用的  求指教啊