MAXIMO批量删除应用程序

本文提供了一段用于批量删除MAXIMO系统中特定应用程序的PL/SQL代码示例。通过定义游标并遍历目标应用,可以实现包括MAXAPPS在内的多个相关表中的记录删除。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

MAXIMO批量删除应用程序

  1. declare
  2. cursor c_data is
  3. select * from maxapps
  4. where description in ('卷包点检汇总表','动力工单汇总查询','设备运行汇总');
  5. c_row c_data%rowtype;
  6. begin
  7. for c_row in c_data loop
  8. delete from maxapps where app=c_row.app;
  9. delete from maxpresentation where app=c_row.app;
  10. delete from sigoption where app=c_row.app;
  11. delete from applicationauth where app=c_row.app;
  12. delete from maxlabels where app=c_row.app;
  13. delete from maxmenu where moduleapp=c_row.app and menutype !='MODULE';
  14. delete from maxmenu where moduleapp=c_row.app and elementtype='APP' and keyvalue=c_row.app;
  15. end loop;
  16. end;

转载于:https://www.cnblogs.com/zgray/p/3311133.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值