/* ================================================================================ 档案代号:gaw_file 档案名称:程式群组纪录档 档案目的: 上游档案: 下游档案: ============.========================.========================================== */ create table gaw_file ( gaw01 varchar2(10) NOT NULL, /*程式群组代码 */ gaw02 varchar2(100) /*程式群组说明 */ ); create unique index gaw_pk on gaw_file (gaw01); alter table gaw_file add constraint gaw_pk primary key (gaw01) enable validate; grant select on gaw_file to public; grant index on gaw_file to public; grant update on gaw_file to public; grant delete on gaw_file to public; grant insert on gaw_file to public; |