April 22, 2012

sp_enumoledbdatasources (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_enumoledbdatasources()

MetaData:

 create procedure sys.sp_enumoledbdatasources  
AS
set nocount on

select srvname, srvproduct, providername from master.dbo.sysservers where
(srvstatus & 0x0080) <> 0

return (0)

No comments:

Post a Comment

Total Pageviews