What is correct way to declare varbinary in SQL Server 2008? Now I declaring like this

    DECLARE @BinaryValue varbinary(MAX)
有帮助吗?

解决方案

The correct way is like this:

DECLARE @BinaryValue varbinary(MAX)

Consider specifying a length instead of MAX, if you can.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top