About 50 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 '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%', it will still …

  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 server - SQL Search Query - Stack Overflow

    Nov 30, 2010 · MS SQL full text search capabilities would work similarly to duplicating the data and updating on inserts and depending on the nature of your "like" queries, may read faster.

  5. Search all tables, all columns for a specific value SQL Server

    Search all tables, all columns for a specific value SQL Server [duplicate] Asked 16 years, 2 months ago Modified 7 years, 11 months ago Viewed 847k times

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

    Apr 26, 2013 · I am using SQL Server and trying to do the same thing. However, I am passing the search string as a parameter to a stored procedure. How do I break up the search string paramater …

  7. t sql - Search for one value in any column of any table inside a ...

    Jan 29, 2019 · Is there a way to search for one value (in my case it is a UID of the type char(64)) inside any column of any table inside one MS SQL Server database? I'm sitting in front of a huge database …

  8. sql - Search an Oracle database for tables with specific column names ...

    We have a large Oracle database with many tables. Is there a way I can query or search to find if there are any tables with certain column names? IE show me all tables that have the columns: id, ...

  9. sql server - Good SQL search tool? - Stack Overflow

    Feb 2, 2013 · There is also a free SQL Search tool from ApexSQL you can try. It integrates into SSMS and can also show relationship diagrams and help with safely removing/renaming objects in your …

  10. 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 and …