Sometimes we want to check where the certain text could appear on the store procedure or trigger we made... Here is the query provide to maximize the searching :
declare @text varchar(max)
set @text = 'Wihemdra'
select name from sys.objects
where object_id in
(
select id from syscomments
where text like '%'+@text+'%'
)
Regards,
Wihemdra
No comments:
Post a Comment