Posts tagged search
Search all table columns for specific text
01 year ago
in Transact-SQL
I needed to find out which columns within all tables in the database, contained a specific string of text. I therefore wrote the script below to do exactly that
CREATE TABLE TempTableColumnResults
( TableName VARCHAR(100),
ColumnName VARCHAR(100)
)
DECLARE @TableName VARCHAR(100)
DECLARE [...]
Red Gate’s SQL Search
01 year ago
in General
Hi.
I have just downloaded Red Gate’s FREE SQL Search tool from http://www.red-gate.com/products/SQL_Search/index.htm
Features:
Find fragments of SQL text within stored procedures, functions, views and more
Quickly navigate to objects wherever they happen to be on your servers
Find all references [...]