Search the source of SQL Server views and stored procedures
Ever have to work on a database with a large number of views and you needed to search the content of the objects? Well, here’s a query which will allow you to search inside your view objects: DECLARE @search VARCHAR(1000) SET @search = '[text]' SELECT »