This blog shares my journey as a software engineer, along with personal reviews and life experiences I’ve gained along the way. “I have not failed. I've just found 10,000 ways that won't work.” — Thomas Edison. If you enjoy my content, please support it by clicking on ads (free for you, big help for me!) or by buying me a coffee on Ko-fi. Thank you!
Friday, February 15, 2013
Search for Text in SQL Server DB
use DB_NAME
SELECT DISTINCT
DB_NAME() AS DatabaseName,
OBJECT_SCHEMA_NAME(id) AS SchemaName,
OBJECT_NAME(id) AS ObjectName,
SUBSTRING(text, PATINDEX('%YOUR_SEARCH_TEXT%',text) - 10, 100) AS TextLocation
FROM sys.syscomments
WHERE text LIKE '%YOUR_SEARCH_TEXT%'
ORDER BY 1, 2, 3
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment