May 14, 2003 at 9:32 am
where can i see my triggers.In stored procedues list or some where else
May 14, 2003 at 9:36 am
You can query sysobjects like
select * from sysobjects
where xtype = 'TR'
or execute
EXEC sp_helptrigger TableName
May 14, 2003 at 9:39 am
where i can look for my trigger if its there in the db
May 14, 2003 at 9:48 am
Enterprise Manager, select Table, right click menu: All Tasks > Manage triggers.
May 14, 2003 at 10:02 am
thanks
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply