April 30, 2012

sp_invalidate_textptr (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_invalidate_textptr(varbinary @TextPtrValue)

MetaData:

 create procedure sys.sp_invalidate_textptr  
@TextPtrValue varbinary(16) = 0x00
as
dbcc invalidate_textptr(@TextPtrValue)
return (0); -- sp_invalidate_textptr

No comments:

Post a Comment

Total Pageviews