/* ================================================================================ 档案代号:tqh_file 档案名称:债权产品系列关系档 档案目的: 上游档案: 下游档案: ============.========================.========================================== */ create table tqh_file ( tqh01 varchar2(10) NOT NULL, /*债权代号 */ tqh02 varchar2(10) NOT NULL, /*系列代号 */ tqhacti varchar2(1), /*资料有效码 */ tqhuser varchar2(10), /*资料所有者 */ tqhgrup varchar2(10), /*资料所有部门 */ tqhmodu varchar2(10), /*资料修改者 */ tqhdate date, /*最近修改日 */ tqhud01 varchar2(255), /*自订栏位-Textedit */ tqhud02 varchar2(40), /*自订栏位-文字 */ tqhud03 varchar2(40), /*自订栏位-文字 */ tqhud04 varchar2(40), /*自订栏位-文字 */ tqhud05 varchar2(40), /*自订栏位-文字 */ tqhud06 varchar2(40), /*自订栏位-文字 */ tqhud07 number(15,3), /*自订栏位-数值 */ tqhud08 number(15,3), /*自订栏位-数值 */ tqhud09 number(15,3), /*自订栏位-数值 */ tqhud10 number(10), /*自订栏位-整数 */ tqhud11 number(10), /*自订栏位-整数 */ tqhud12 number(10), /*自订栏位-整数 */ tqhud13 date, /*自订栏位-日期 */ tqhud14 date, /*自订栏位-日期 */ tqhud15 date /*自订栏位-日期 */ ); create unique index tqh_pk on tqh_file (tqh01,tqh02); alter table tqh_file add constraint tqh_pk primary key (tqh01,tqh02) enable validate; grant select on tqh_file to public; grant index on tqh_file to public; grant update on tqh_file to public; grant delete on tqh_file to public; grant insert on tqh_file to public; |