Search
 
SCRIPT & CODE EXAMPLE
 

SQL

t-sql find object by name

-- SEARCHING FOR A SPECIFIC OBJECT CROSS DATABASE
SELECT
	*
FROM
	Sys.Objects
WHERE 1=1
	AND name = '%HERE_THE_NAME_OF_OBJECT%'
Comment

PREVIOUS NEXT
Code Example
Sql :: mysql strict_trans_tables 
Sql :: psql restore from tar 
Sql :: postgres convert exisiting column to text 
Sql :: restart identity cascade 
Sql :: sql throw error 
Sql :: sqlite foreign key 
Sql :: Odoo Service is not coming up with postgresql read replica (slave) 
Sql :: how to copy data of a table from another database to table of anaother database 
Sql :: mysql random number between 1 and 100 
Sql :: query any digits record 
Sql :: oracle kill job by sid 
Sql :: postgres check timezone 
Sql :: add primary key to existing table sql 
Sql :: how to check nls timestamp format in oracle 
Sql :: mysql show charset 
Sql :: mysql user permission database 
Sql :: mysql current user 
Sql :: create column mysql terminal 
Sql :: how do you use sql in you company 
Sql :: helptext in sql 
Sql :: oracle add months to sysdate 
Sql :: how to delete table sqlite 
Sql :: sql server drop table if exists 
Sql :: get first 3 letters in sql 
Sql :: create column sql 
Sql :: sql create table with datetime automatically 
Sql :: update row in mysql 
Sql :: wsl centos 8 mysql 
Sql :: org.h2.jdbc.jdbcsqlsyntaxerrorexception table not found 
Sql :: get only first row mysql 
ADD CONTENT
Topic
Content
Source link
Name
2+1 =