April 22, 2012

sp_enum_oledb_providers (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_enum_oledb_providers()

MetaData:

 create proc sys.sp_enum_oledb_providers  
as
begin

IF (not is_srvrolemember(N'setupadmin') = 1)
begin
raiserror(15003,-1,-1, N'setupadmin')
return (1)
end
exec sys.xp_enum_oledb_providers
end

No comments:

Post a Comment

Total Pageviews