質問

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