Viewing post 1 (of 1 total)
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...
August 15, 2006 at 8:51 am
#655072