为提高效率,提问时请提供以下信息,问题描述清晰可优先响应。 【DM版本】:8.0 【操作系统】:win10 【CPU】: 【问题描述】*:如何获取触发器TIMER的详情数据 ?
先查出这个触发器的对象ID select * from sysobjects where subtype$='TRIG';
再将对象ID传入另一个视图 select * from systexts where id = xxxx
先查出这个触发器的对象ID
select * from sysobjects where subtype$='TRIG';
再将对象ID传入另一个视图
select * from systexts where id = xxxx