As far as I know the maximum value you can define "manually" is 8000
-> varbinary(8000)
which, as far as I know, means 8000 bytes
-> 7,8125 KByte
.
Is it possible to set max to 2 MB
? Something ike varbinary(2097152)
, or shall I set it to varbinary(max)
and check the file size through my upload/sql insert script?