批量维护业务委托提示该记录已经不存在处理办法

在组织单元模块下,维护组织委托关系时,委托组织选择后提示错误:“该记录已经不存在”。推测是在组织结构调整期间,未按照要求在后台删除了组织机构但是未清理委托关系导致。

处理方式如下:

--查询委托组织不在组织结构表的--
select *  from T_ORG_UNITRELATION where ffromunitid not in (select fid from t_org_baseunit);
select *  from T_ORG_UNITRELATION where ftounitid not in (select fid from t_org_baseunit);

--备份要删除的垃圾数据--
create table T_ORG_UNITRELATION_bak select *  from T_ORG_UNITRELATION where ffromunitid not in (select fid from t_org_baseunit);
insert into T_ORG_UNITRELATION_bak  select *  from T_ORG_UNITRELATION where ftounitid not in (select fid from t_org_baseunit);

select * from  T_ORG_UNITRELATION_bak;
--删除数据--
delete from T_ORG_UNITRELATION where ffromunitid not in (select fid from t_org_baseunit);
delete from T_ORG_UNITRELATION where ftounitid not in (select fid from t_org_baseunit);

--确认问题解决,删除备份数据--
drop table T_ORG_UNITRELATION_bak;

以上,问题解决。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值