Pregunta

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

    DECLARE @BinaryValue varbinary(MAX)
¿Fue útil?

Solución

The correct way is like this:

DECLARE @BinaryValue varbinary(MAX)

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

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top