自学内容网 自学内容网

查看触发器引用对象

查看触发器引用对象

        直接从dba_triggers表查询触发器引用的对象,速度特别慢,所有通过创建表查询。

  1. 首先转换触发器表。
create table temp_triggers as select t.owner, t.trigger_name,to_lob(t.trigger_body)  trigger_body from dba_triggers t;
  1. 查看引用对象
select * from temp_triggers a where dbms_lob.instr(a.trigger_body,'rpt_case')>0
  1. 删除临时表
drop table temp_triggers;

原文地址:https://blog.csdn.net/ts16dmy/article/details/145164790

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!