/* ================================================================================ 档案代号:bxd_file 档案名称:保税受托加工原料料件月统计档 档案目的: 上游档案: 下游档案: ============.========================.========================================== */ create table bxd_file ( bxd01 varchar2(40) NOT NULL, /*料件编号 */ bxd03 number(5) NOT NULL, /*年度 */ bxd04 number(5) NOT NULL, /*月份 */ bxd05 varchar2(16) NOT NULL, /*订单单号 */ bxd06 number(5) NOT NULL, /*订单项次 */ bxd07 number(15,3) NOT NULL, /*本期杂收总量 */ bxd08 number(15,3) NOT NULL, /*本期杂发总量 */ bxd09 number(15,3) NOT NULL, /*本期报废总量 */ bxd10 number(15,3) NOT NULL, /*本期工单发料总量 */ bxd11 number(15,3) NOT NULL, /*本期工单退料总量 */ bxd12 number(15,3) NOT NULL, /*本期完工入库总量 */ bxd13 number(15,3) NOT NULL, /*本期采购入库总量 */ bxd14 number(15,3) NOT NULL, /*本期采购仓退总量 */ bxd15 number(15,3) NOT NULL, /*本期销货总量 */ bxd16 number(15,3) NOT NULL, /*本期销货退回总量 */ bxd17 number(15,3) NOT NULL, /*本期其它异动总量 */ bxd18 number(15,3) NOT NULL /*期末数量 */ ); create index bxd_02 on bxd_file (bxd05,bxd06); create unique index bxd_pk on bxd_file (bxd01,bxd03,bxd04,bxd05,bxd06); alter table bxd_file add constraint bxd_pk primary key (bxd01,bxd03,bxd04,bxd05,bxd06) enable validate; grant select on bxd_file to public; grant index on bxd_file to public; grant update on bxd_file to public; grant delete on bxd_file to public; grant insert on bxd_file to public; |