Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Find what updates a table

    select name,o.id,xtype, text ,refdate

    from sysobjects o

    join syscomments c

    on o.id = c.id

    where text like '%tablename%'

    and text like '%update%'

    order by name

    you could try this to look through...

Viewing post 1 (of 1 total)