April 30, 2012

sp_linkedservers (Transact-SQL MetaData) Definition

Please note: that the following source code is provided and copyrighted by Microsoft and is for educational purpose only.
The meta data is from an SQL 2012 Server.

I have posted alot more, find the whole list here.

Goto Definition or MetaData

Definition:

sys.sp_linkedservers()

MetaData:

   
create procedure sys.sp_linkedservers
as
select
SRV_NAME = srv.name,
SRV_PROVIDERNAME = srv.provider,
SRV_PRODUCT = srv.product,
SRV_DATASOURCE = srv.data_source,
SRV_PROVIDERSTRING = srv.provider_string,
SRV_LOCATION = srv.location,
SRV_CAT = srv.catalog
from
sys.servers srv
order by 1

No comments:

Post a Comment

Total Pageviews