如何查找表中存在的触发器列表。我正在使用sybase ASE 15-2
我试过
exec sp_depends 'dbo.mytable'
我收到错误..
答案 0 :(得分:0)
1-检查sp_depends是否存在:
use sybsystemprocs
go
sp_help sp_depends
go
2-检查installmaster中的sp_depends版本是否与ASE版本
相对应use master
go
sp_version -- look at the version of installmasater
go
select @@version -- look at the version of ASE
go
-- if it is not the same version, run installmaster script (check in TEST first)
2-运行命令:
use <dbname>
go
exec sp_depends 'mytable' OR sp_depends mytable
go