如何通过sql命令得到触发器的内容?
如提
[解决办法]
从系统表里面读取即可!
[解决办法]
sp_helptext 触发器名称
or
select text from syscomments where id = object_id( '触发器名称 ')
发布时间: 2012-04-03 12:38:19 作者: rapoo
如何通过sql命令得到触发器的内容?
如提
[解决办法]
从系统表里面读取即可!
[解决办法]
sp_helptext 触发器名称
or
select text from syscomments where id = object_id( '触发器名称 ')