Getting Started with Adobe After Effects - Part 6: Motion Blur


Upload Image Close it
Select File

Browse by Tags · View All
sql_server 217
t-sql 211
tsql 116
sqlserver 96
BRH 78
#SQLServer 66
#TSQL 56
SQL Server 34
function 11
SSMS 9

Archive · View All
August 2007 17
August 2010 8
June 2012 7
June 2011 7
November 2007 7
August 2012 6
May 2012 6
November 2011 6
August 2011 6
October 2011 6

Madhivanan's TSQL Blog

List out tables from linked server

Sep 8 2010 5:35AM by Madhivanan   

The system stored procedure sp_tables is used to list out the tables available in the current database of the current server. What if you want to know the same that exist in the linked Server? You can use sp_tables_ex

The following returns list of tables available in the specified Server and database

EXEC sp_tables_ex 
	@table_server = 'your_linked_server_name', 
	@table_catalog = 'your_database', 
	@table_type = 'TABLE' 

If you want to know about the list of Views

EXEC sp_tables_ex 
	@table_server = 'your_linked_server_name', 
	@table_catalog = 'your_database', 
	@table_type = 'VIEW' 

Tags: t-sql, sql_server, tsql, BRH, #TSQL, #SQLServer, sp_tables_ex,


Madhivanan
3 · 39% · 12419
0
Liked
 
0
Lifesaver
 
0
Refreshed
 
0
Learned
 
0
Incorrect



Submit

1  Comments  

  • This is great. I am working in an environment with linked servers that have several thousand views. Thanks.

    commented on Sep 20 2011 8:02AM
    roberthoffman
    2891 · 0% · 2

Your Comment


Sign Up or Login to post a comment.

    Copyright © Rivera Informatic Private Ltd Contact us      Privacy Policy      Terms of use      Report Abuse      Advertising      [ZULU1097]