/*
================================================================================
档案代号:cxy_file
档案名称:仅暂存用
档案目的:
上游档案:
下游档案:
============.========================.==========================================
*/
create table cxy_file
(
cxy01       varchar2(16) NOT NULL    /*工单编号                               */
);

create unique index cxy_pk on cxy_file (cxy01);
alter table cxy_file add  constraint cxy_pk primary key  (cxy01) enable validate;
grant select on cxy_file to public;
grant index on cxy_file to public;
grant update on cxy_file to public;
grant delete on cxy_file to public;
grant insert on cxy_file to public;