Search
 
SCRIPT & CODE EXAMPLE
 

SQL

sql server: query to find out all the places where the table is used

SELECT DISTINCT
    o.name AS Object_Name,o.type_desc
    FROM sys.sql_modules        m 
        INNER JOIN sys.objects  o ON m.object_id=o.object_id
    WHERE m.definition Like '%WhateverIAmSearchingFor%'
Comment

PREVIOUS NEXT
Code Example
Sql :: mysql print variable 
Sql :: how to install psql in ubuntu 
Sql :: date today snowflake 
Sql :: mysql first day of year 
Sql :: delete mysql from mac 
Sql :: his is incompatible with sql_mode=only_full_group_by 
Sql :: oracle get table column names 
Sql :: see mysql users ubuntu 
Sql :: drop view in mysql 
Sql :: sql server check if temp table exists 
Sql :: change column names mssql 
Sql :: sql query to find duplicates in column 
Sql :: mysql get time from datetime 
Sql :: mysql check table exists 
Sql :: mysql random limit 1 
Sql :: [2021-10-05T13:43:48.961Z] error Error: ER_NOT_SUPPORTED_AUTH_MODE: Client does not support authentication protocol requested by server; consider upgrading MySQL client 
Sql :: mysql dump database command line linux 
Sql :: get date from now() mysql 
Sql :: sqlserver add column to table 
Sql :: get columns number sql 
Sql :: psql: error: connection to server on socket "/tmp/.s.PGSQL.5432" f 
Sql :: count mysql server db tables 
Sql :: metasploit start postgresql 
Sql :: sql server add identity column to existing table 
Sql :: check sql database table lock 
Sql :: postgresql show current database 
Sql :: sql syntax find few columns 
Sql :: psql human readable 
Sql :: mysql select for update ejemplo 
Sql :: split first name and last name in sql 
ADD CONTENT
Topic
Content
Source link
Name
7+4 =