1

如何查找表中存在的触发器列表。我正在使用 sybase ASE 15-2

我试过了

exec sp_depends 'dbo.mytable'

我收到错误..

4

1 回答 1

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
于 2013-08-15T17:41:51.980 回答