June 6, 2012

sp_ORbitmap (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_ORbitmap(varbinary @inputbitmap1
, varbinary @inputbitmap2)

MetaData:

 create procedure sys.sp_ORbitmap (  
@inputbitmap1 varbinary(128),
@inputbitmap2 varbinary(128),
@resultbitmap3 varbinary(128) OUTPUT
)
as
begin
declare @retcode int
exec @retcode = sys.xp_ORbitmap @inputbitmap1,@inputbitmap2,@resultbitmap3 output
return @retcode
end

No comments:

Post a Comment

Total Pageviews