Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: To list all trigger

    to see also the concerned table:

    SELECT ta.name AS

    , tr.name AS [trigger name]

    FROM dbo.sysobjects tr

    INNER JOIN dbo.sysobjects ta ON tr.parent_obj = ta.id

    WHERE tr.xtype...

Viewing post 1 (of 1 total)