About 13,200 results
Open links in new tab
  1. How do I search an SQL Server database for a string?

    Dec 8, 2019 · I need to search an SQL Server database for all mentions of a specific string. For example, I would like to search all tables, views, functions, stored procedures, ... for string …

  2. SQL SELECT WHERE field contains words - Stack Overflow

    Jan 12, 2013 · 0 This should ideally be done with the help of SQL Server full text search if using that. However, if you can't get that working on your DB for some reason, here is a …

  3. sql - Find all tables containing column with specified name - Stack ...

    These come in very handy if your database contains encrypted objects (views, procedures, functions) because you can’t easily search for these using system tables.

  4. SQL 'LIKE' query using '%' where the search criteria contains

    May 29, 2012 · Select * from table where name like '%' + search_criteria + '%' If search_criteria = 'abc', it will return data containing xxxabcxxxx which is fine. But if my search_criteria = 'abc%', …

  5. Search text in stored procedure in SQL Server - Stack Overflow

    Feb 5, 2013 · I want to search a text from all my database stored procedures. I use the below SQL: SELECT DISTINCT o.name AS Object_Name, o.type_desc FROM sys.sql_modules m …

  6. SQL Server search for a column by name - Stack Overflow

    Sep 21, 2010 · I'm doing some recon work and having to dig through a few hundred SQL Server database tables to find columns. Is there a way to easily search for columns in the database …

  7. SQL search multiple values in same field - Stack Overflow

    Apr 26, 2013 · SQL search multiple values in same field Asked 12 years, 7 months ago Modified 4 years, 3 months ago Viewed 402k times

  8. sql - How to search about a specific value in all columns in the …

    May 18, 2015 · This query will search a specific string in all tables, rows and columns of a database, if found results it will return table's name and column's name of that table that …

  9. Find a string by searching all tables in SQL Server

    Is there any way to search for a string in all tables of a database in SQL Server? I want to search for string say john. The result should show the tables and their respective row that contain john.

  10. How can I query a value in SQL Server XML column

    Apr 27, 2012 · Obviously this is a bit of a hack and I wouldn't recommend it for any formal solutions. However I find this technique very useful when doing adhoc queries on XML …