/* ================================================================================ 档案代号:nmp_file 档案名称:银行存款统计档 档案目的: 上游档案: 下游档案: ============.========================.========================================== */ create table nmp_file ( nmp01 varchar2(11) NOT NULL, /*银行编号 */ nmp02 number(5) NOT NULL, /*年度 */ nmp03 number(5) NOT NULL, /*月份 */ nmp04 number(20,6) NOT NULL, /*出纳存入合计 */ /*出纳存入合计(原币) */ nmp05 number(20,6) NOT NULL, /*出纳提出合计 */ /*出纳提出合计(原币) */ nmp06 number(20,6) NOT NULL, /*出纳结存合计 */ /*出纳结存合计(原币) */ nmp07 number(20,6) NOT NULL, /*出纳存入合计 */ /*出纳存入合计(本币) */ nmp08 number(20,6) NOT NULL, /*出纳提出合计 */ /*出纳提出合计(本币) */ nmp09 number(20,6) NOT NULL, /*出纳结存合计 */ /*出纳结存合计(本币) */ nmp14 number(20,6) NOT NULL, /*总帐存入合计 */ /*总帐存入合计(原币) */ nmp15 number(20,6) NOT NULL, /*总帐提出合计 */ /*总帐提出合计(原币) */ nmp16 number(20,6) NOT NULL, /*总帐结存合计 */ /*总帐结存合计(原币) */ nmp17 number(20,6) NOT NULL, /*总帐存入合计 */ /*总帐存入合计(本币) */ nmp18 number(20,6) NOT NULL, /*总帐提出合计 */ /*总帐提出合计(本币) */ nmp19 number(20,6) NOT NULL /*总帐结存合计 */ /*总帐结存合计(本币) */ ); create unique index nmp_pk on nmp_file (nmp01,nmp02,nmp03); alter table nmp_file add constraint nmp_pk primary key (nmp01,nmp02,nmp03) enable validate; grant select on nmp_file to public; grant index on nmp_file to public; grant update on nmp_file to public; grant delete on nmp_file to public; grant insert on nmp_file to public; |