June 6, 2012

sp_prop_oledb_provider (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_prop_oledb_provider(nvarchar @p1)

MetaData:

 create proc sys.sp_prop_oledb_provider (  
@p1 nvarchar(255)=NULL)
as
begin

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

No comments:

Post a Comment

Total Pageviews