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_mapdown_bitmap(varbinary @mapdownbm)MetaData:
create procedure sys.sp_mapdown_bitmap (
@mapdownbm varbinary(128),
@bm varbinary(128) OUTPUT
)
as
begin
declare @retcode int
exec @retcode = sys.xp_mapdown_bitmap @mapdownbm, @bm output
return @retcode
end
No comments:
Post a Comment