What is correct way to declare varbinary in SQL Server 2008? -
what correct way declare varbinary
in sql server 2008? declaring this
declare @binaryvalue varbinary(max)
the correct way this:
declare @binaryvalue varbinary(max)
consider specifying length instead of max
, if can.
Comments
Post a Comment