Hi,
Got the following information from another website. These values are not documented (at least i could not find

)
trigger status (enabled/disabled) based on sysstat2 column values for table
sysstat2 & 1048576 (0x100000) != 0 => insert trigger disabled
sysstat2 & 2097152 (0x200000) != 0 => delete trigger disabled
sysstat2 & 4194304 (0x400000) != 0 => update trigger disabled
It is also working in sybase 15.5 developer edition.
Code:
1> select * from sysobjects where (sysstat2 & 2097152)!= 0
2> go
name id uid type userstat sysstat indexdel schemacnt sysstat2 crdate expdate deltrig instrig updtrig seltrig ckfirst cache audflags objspare versionts loginame identburnmax spacestate erlchgts sysstat3
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- ----------- ----------- ---- -------- ------- -------- --------- ----------- -------------------------- -------------------------- ----------- ----------- ----------- ----------- ----------- ------ ----------- -------- -------------------------- ------------------------------ ----------------------------------------- ---------- ------------------ --------
titles 768002736 1 U 0 115 2 4 2170880 Jun 8 2011 6:12PM Jun 8 2011 6:12PM 1104003933 0 0 0 0 0 0 0 NULL NULL NULL NULL NULL 0
(1 row affected)
1> select name from sysobjects where id=1104003933
2> go
name
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
deltitle
(1 row affected)
1> sp_help deltitle
2> go
Name Owner Object_type Object_status Create_date
-------- ----- ----------- ------------- -------------------
deltitle dbo trigger -- none -- Jun 8 2011 6:12PM
(1 row affected)