如何通过sql命令得到触发器的内容?如提[解决办法]从系统表里面读取即可![解决办法]sp_helptext 触发器名称
如何通过sql命令得到触发器的内容?
如提
[解决办法]
从系统表里面读取即可!
[解决办法]
sp_helptext 触发器名称
or
select text from syscomments where id = object_id( '触发器名称 ')
如何通过sql命令得到触发器的内容?
如提
[解决办法]
从系统表里面读取即可!
[解决办法]
sp_helptext 触发器名称
or
select text from syscomments where id = object_id( '触发器名称 ')