Search
 
SCRIPT & CODE EXAMPLE
 

SQL

select all tables linked server sql

declare @temp table
(
    col1 varchar(255),
    col2 varchar(255),
    [name] varchar(255),
    [type] varchar(255),
    col3 varchar(255)
)
insert @temp exec sp_tables_ex 'Your_LinkedServer_Name'
select * from @temp
Comment

PREVIOUS NEXT
Code Example
Sql :: sql top 3 for each group 
Sql :: error 1054 mysql 
Sql :: oracle avg 
Sql :: update multiple columns in sql 
Sql :: mysql count unique in group statement 
Sql :: How to find string in substring in sql server 
Sql :: run docker container with database as rds metabase 
Sql :: restart mysql 
Sql :: get all employee of salary if more than in sql 
Sql :: nth highest salary in sql 
Sql :: sql unique constraint 
Sql :: mysql function to remove multiple spaces from the string 
Sql :: express mysql 
Sql :: rand mysql 
Sql :: symfony Integrity constraint violation: 1451 Cannot delete or update a parent row: a foreign key constraint fails 
Sql :: import csv to postgresql 
Sql :: sql alter column 
Sql :: sql case statement 
Sql :: Sequelize model datatype of enum 
Sql :: how to get last inserted id in sql server c# 
Sql :: mysql mediumtext 
Sql :: date in mysql 
Sql :: mysql dump 
Sql :: group_concat mysql 
Sql :: SQL IS NULL With COUNT() 
Sql :: create-table 
Sql :: sql server find all referencing objects to user-defined table type 
Sql :: how to check last index rebuild sql server 
Sql :: hour must be between 1 and 12 
Sql :: compress sql file database ubuntu 
ADD CONTENT
Topic
Content
Source link
Name
5+4 =