I have a table with a varbinary(max) column, i am trying to assign to that column a zero-lengh binary buffer, but instead of getting a zero-length value in the table, i am getting an 8000 bytes long value filled with zeros:
8000 long zero buffer
* the dataSize column in the shown query was added using DATALENGHT(data) ("SELECT _index, dataSize=DATALENGHT(data), data FROM....") and shows the actual size on the table of the value

Where does the 8000 bytes long empty buffer come from? is this some kind of default behavior?

Thanks, Amit.

link|improve this question

How was the assignment of the zero-length buffer performed? What technologies were involved (i.e. was this from some piece of client code somewhere)? – Damien_The_Unbeliever Feb 16 '11 at 15:24
feedback

1 Answer

If your source column is binary(8000), then DATALENGTH(data) will return 8000 (it is fully padded) and data will contain the full 8000 bytes.

But since you are using

SELECT _index, dataSize=DATALENGTH(data), data FROM

It cannot be a binary(8000) column - because a fixed size column will report the same datalength for all rows. It is likely some data was copied there from a BINARY(8000) variable or other means some time in the past.

link|improve this answer
I can assure you no data was copied, the presented row is a result of an UPDATE query assigning a zero-sized buffer to the data column- i check the contents before and after the query and made sure this is the case – Amit Bens Feb 16 '11 at 15:44
@Amit you could have defined a client-side parameter of binary(8000) or some such, and even if you give it a value of 0-size buffer, the db driver will pad out to 8000. The long and short is the data is there in the table where you are doing the SELECT..FROM – Richard aka cyberkiwi Feb 16 '11 at 17:41
@Richard i'm not sure i understand the second part of your comment, could you please clarify? – Amit Bens Feb 17 '11 at 8:01
@Amit - this part? The long and short is the data is there in the table where you are doing the SELECT..FROM It means that you need to track down how it got in there, but it is surely in the table right now (a record-column-data with 8000 bytes). – Richard aka cyberkiwi Feb 17 '11 at 8:39
@Richard it's obviously in the table.. but as far as i could track it down, the query i sent was valid, i am using the .Net internal SQL client class – Amit Bens Feb 17 '11 at 11:16
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.