/*
================================================================================
档案代号:voi_file
档案名称:
档案目的:
上游档案:
下游档案:
============.========================.==========================================
*/
create table voi_file
(
voi00       varchar2(10) DEFAULT '' NOT NULL, /*营运中心*/
voi01       varchar2(10) DEFAULT '' NOT NULL, /*限定版本*/
voi02       varchar2(10) DEFAULT '' NOT NULL, /*储存版本*/
voi03       varchar2(16) DEFAULT '' NOT NULL, /*制令编号*/
voi04       varchar2(10) DEFAULT '' NOT NULL, /*途程编号*/
voi05       varchar2(60) DEFAULT '' NOT NULL, /*制程序号*/
voi06       varchar2(6) DEFAULT '' NOT NULL, /*作业编号*/
voi07       number(1),               /*是否数量变更                           */
voi08       number(1),               /*是否日期变更                           */
voi09       number(1),               /*是否设备变更                           */
voi10       varchar2(1)              /*变更码                                 */
);

create unique index voi_pk on voi_file (voi00,voi01,voi02,voi03,voi04,voi05,voi06);
alter table voi_file add  constraint voi_pk primary key  (voi00,voi01,voi02,voi03,voi04,voi05,voi06) enable 
validate;
grant select on voi_file to public;
grant index on voi_file to public;
grant update on voi_file to public;
grant delete on voi_file to public;
grant insert on voi_file to public;