/* ================================================================================ 档案代号:npx_file 档案名称:票据格式设定档 档案目的: 上游档案: 下游档案: ============.========================.========================================== */ create table npx_file ( npx01 varchar2(4) NOT NULL, /*格式代号 */ npx02 varchar2(11), /*银行编号 */ npx03 number(5), /*簿号 */ /*簿号 modi in 99/12/29 */ npx04 number(5), /*页首空行 */ npx05 number(5), /*页尾空行 */ npx06 number(5), /*页尾空行 */ npxuser varchar2(10), /*资料输入者 */ npxgrup varchar2(10), /*资料输入者部门 */ npxdate date /*资料输入日期 */ ); create unique index npx_pk on npx_file (npx01); alter table npx_file add constraint npx_pk primary key (npx01) enable validate; grant select on npx_file to public; grant index on npx_file to public; grant update on npx_file to public; grant delete on npx_file to public; grant insert on npx_file to public; |