/* ================================================================================ 档案代号:ecn_file 档案名称:工作站工作历档 档案目的: 上游档案: 下游档案: ============.========================.========================================== */ create table ecn_file ( ecn01 varchar2(4) NOT NULL, /*工作历编号 */ ecn02 date NOT NULL, /*日期 */ ecn03 varchar2(10) NOT NULL, /*版本 */ ecn04 number(8,4), /*工作小时 */ /*每天工作小时 */ ecn05 number(9,4), /*产能效率调整(%) */ /*如果对于工作站标准产能的效率欲有所 */ /*调整时,可以输入此栏位 */ /*预设值 100 */ /*正确值不可大于 100 */ ecn06 varchar2(1) /*No Use */ ); create unique index ecn_pk on ecn_file (ecn01,ecn02,ecn03); alter table ecn_file add constraint ecn_pk primary key (ecn01,ecn02,ecn03) enable validate; grant select on ecn_file to public; grant index on ecn_file to public; grant update on ecn_file to public; grant delete on ecn_file to public; grant insert on ecn_file to public; |