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

Popular posts from this blog

c++ - Linked List error when inserting for the last time -

java - activate/deactivate sonar maven plugin by profile? -

java - What is the difference between String. and String.this. ? -