/* ================================================================================ 档案代号:ofe_file 档案名称:潜在客户等级异动明细档 档案目的: 上游档案: 下游档案: ============.========================.========================================== */ create table ofe_file ( ofe01 varchar2(10) NOT NULL, /*潜在客户编号 */ ofe02 date NOT NULL, /*等级调整日 */ ofe03 varchar2(10), /*变更员工编号 */ ofe04 varchar2(1), /*变更前等级 */ ofe05 varchar2(1), /*变更后等级 */ ofe06 varchar2(10), /*变更前业务员编号 */ ofe07 varchar2(10), /*变更后业务员编号 */ ofe08 varchar2(255), /*等级调整原因 */ ofeacti varchar2(1), /*资料有效码 */ ofeuser varchar2(10), /*资料所有者 */ ofegrup varchar2(10), /*资料所有部门 */ ofemodu varchar2(10), /*资料修改者 */ ofedate date /*最近修改日 */ ); create unique index ofe_pk on ofe_file (ofe01,ofe02); alter table ofe_file add constraint ofe_pk primary key (ofe01,ofe02) enable validate; grant select on ofe_file to public; grant index on ofe_file to public; grant update on ofe_file to public; grant delete on ofe_file to public; grant insert on ofe_file to public; |