/* ================================================================================ 档案代号:zb_file 档案名称:DSZ系统参数档 档案目的: 上游档案: 下游档案: ============.========================.========================================== */ create table zb_file ( zb00 varchar2(1) NOT NULL, /*KEY VALUE(0) */ zb01 varchar2(1), /*资料库是否使用 Transaction Log */ /*资料库是否使用 Transaction Log (Y/N) */ zb02 varchar2(1), /*使用者定义方式 */ /*使用者定义方式 (1)Login user (2)TTY no */ zb03 varchar2(1) /*日期使用方式 */ /*日期使用方式 (1)西元 (2)民国 */ /* (0)民国 DBDATE=Y2MD/C1 仅 4.0 版有效 */ /* (1)西元 DBDATE=Y2MD/ .Default. */ ); create unique index zb_pk on zb_file (zb00); alter table zb_file add constraint zb_pk primary key (zb00) enable validate; grant select on zb_file to public; grant index on zb_file to public; grant update on zb_file to public; grant delete on zb_file to public; grant insert on zb_file to public; |