/* ================================================================================ 档案代号:ozd_file 档案名称:航/海运状态说明档 档案目的: 上游档案: 下游档案: ============.========================.========================================== */ create table ozd_file ( ozd01 varchar2(1) NOT NULL, /*类别 */ /*类别(1/2) */ /*1:航运(O/C/H) */ /*2:空运(A/E) */ ozd02 varchar2(2) NOT NULL, /*检核点 */ ozd03 varchar2(80) /*检核点说明 */ ); create unique index ozd_pk on ozd_file (ozd01,ozd02); alter table ozd_file add constraint ozd_pk primary key (ozd01,ozd02) enable validate; grant select on ozd_file to public; grant index on ozd_file to public; grant update on ozd_file to public; grant delete on ozd_file to public; grant insert on ozd_file to public; |