create table
(
  ID     NUMBER,
  TITLE2 VARCHAR2(193),
  KINDID VARCHAR2(3)
)
******
tablespace CAAC
  pctfree 10
  initrans 1
  maxtrans 255
  storage
  (
    initial 64K
    minextents 1
    maxextents unlimited
  );