Tagged Questions

varbinary is the SQL Server datatype used to hold variable-length binary data

learn more… | top users | synonyms

6
votes
4answers
3k views

How do I get fluent nhibernate to create a varbinary(max) field in sql server

How can I get fluent nhibernate to create a varbinary field in a sql server 2005 table that uses a field size of varbinary(max)? At the moment I always get a default of varbinary(8000), which isn't ...
4
votes
2answers
2k views

SQL Server Varbinary(max): select a subset of bytes from the varbinary field

What is the most efficient way of reading just part of the binary data from a varbinary(MAX) field (not using FileStreams) in SQL Server 2008? When writing data to the column the VarBinary.Write() ...
3
votes
1answer
330 views

Strategies for checking ISNULL on varbinary fields?

In the past I've noted terrible performance when querying a varbinary(max) column. Understandable, but it also seems to happen when checking if it's null or not, and I was hoping the engine would ...
3
votes
2answers
889 views

Upload a file to a varbinary with SQL Management Studio

Is there any way to upload a file to a varbinary with SQL Management Studio without writting a manual SQL query ?
3
votes
2answers
679 views

Ad-hoc retreival of data from SQL Server varbinary column

I would like to retreive some binary data from a varbinary(max) column in a SQL Server database for debugging purposes. What is the easiest way to get this data into a local binary file, preferably ...
3
votes
1answer
2k views

Can I return a byte array from a SQL Server VarBinary column using a parameterized query?

I wrote a small VBA procedure to test uploading and downloading of files as binary data into and out of a VarBinary column in SQL Server using ADO. The upload process appears to work, but I cannot get ...
3
votes
2answers
981 views

Django: How to model a MySQL VARBINARY HEX Field? (solved)

I am trying to model a VARBINARY MySQL field in Django v1.1.1. The binary field stores a hexadecimal representation of data (i.e. one would use INSERT INTO test(bin_val) VALUES X'4D7953514C') Reading ...
3
votes
3answers
591 views

SQL Server 2005: Replication, varbinary

Scenario In our replication scheme we replicate a number of tables, including a photos table that contains binary image data. All other tables replicate as expected, but the photos table does not. ...
2
votes
2answers
37 views

SQL Query to store text data in a Varbinary(max)

Is there a way to make a varbinary accept text data in SQL Server? Here is my situation. I have a fairly large amount of XML that I plan on storing in a "zipped" format. (This means a Varbinary.) ...
2
votes
2answers
37 views

Using MD5 in SQL Server 2005 to do a checksum file on a varbinary

Im trying to do a MD5 check for a file uploaded to a varbinary field in MSSQL 2005. I uploaded the file and using SELECT DATALENGTH(thefile) FROM table I get the same number of bytes that the ...
2
votes
3answers
119 views

Can I treat Varbinary and bytea fields equivalently?

I moved a mysql DB to Postgres, but some of the tables had a varbinary(16) field (to store an ip address). Postgres does not support varbinary fields, and after some research, I found that the ...
2
votes
1answer
230 views

Error writing >4000 bytes to varbinary(max) via linq-to-sql classes

The type of my database column is varbinary(max), (sql server 2008). Linq to Sql Classes (vs 2010, fx4) has generated this code for me: [global::System.Data.Linq.Mapping.ColumnAttribute ...
2
votes
1answer
189 views

Saving XML from a string to a varbinary column in Sql Server 2005 .NET

Using .NET (in an SSIS package): I've got an XML string in memory which I need to save to a varbinary column in Sql Server, as an XML file. It seems like I should be able to avoid actually saving a ...
2
votes
1answer
242 views

What is the advantage of using varbinary over varchar here?

A while ago I asked a question about hierarchy/version number sorting in SQL Server. ( How Can I Sort A 'Version Number' Column Generically Using a SQL Server Query). Among the answers that ...
2
votes
1answer
439 views

Assigning an empty binary value to a varbinary(MAX) column creates a column 8000 bytes long

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 ...
2
votes
2answers
882 views

Is there a big technical difference between VARBINARY(MAX) and IMAGE data types?

I was reading on internet these statements about SQL Server data types: VARBINARY(MAX) - Binary strings with a variable length can store up to 2^31-1 bytes. IMAGE - Binary strings with a variable ...
2
votes
3answers
2k views

Script to save varbinary data to disk

I have some varbinary data stored in a table in MS Sql Server 2005. Does anyone have SQL code that takes a query as input (lets say the query guarantees that a single column of varbinary is returned) ...
2
votes
3answers
105 views

Selecting not null column

I have a table with varbinary(max) column and nvarchar(max) column. One of them is null and the other has a value. I would like to return the column that has the value as a varbinary(max) column. So ...
2
votes
3answers
116 views

Permissions for Large Variables to Be Sent Via Stored Procedures (SQL Server)

I can't figure out a way to allow more than 4000 bytes to be received at once via a call to a stored procedure. I am storing images in the table that are around 15 - 20 kilobytes each, but upon ...
2
votes
1answer
545 views

Database.ExecuteNonQuery does not return

I have a very odd issue. When I execute a specific database stored procedure from C# using SqlCommand.ExecuteNonQuery, my stored procedure is never executed. Furthermore, SQL Profiler does not ...
2
votes
2answers
2k views

SQL: Sequentially doing UPDATE .WRITE on VarBinary column

I'm trying to create a little test application which reads chunks of a FileStream and appends it to a VarBinary(max) column on an SQL Server 2005 Express. Everything works - the column gets filled as ...
2
votes
1answer
1k views

Sql 2008 Filestream with NHibernate

I am attempting to use Filestream in sql server 2008 to store user uploaded images. My problem is that NHibernate will not error, but it also will not save the data into the database. No record is ...
2
votes
3answers
3k views

Handling hashed passwords stored as varbinary in SQL Server and classic ASP

All, Sorry in advance - I'm a novice in most of the topics below (SQL, ASP). Anyway... I've got a pretty simple web app that requires users to log in with a user name and password. The front end ...
2
votes
4answers
2k views

ASP.NET Store uploaded file sql server table

How do you store a file that was uploaded by an ASP.net webform into a sql server 2005 varbinary(max) field? Here is what I have so far: protected void btnUpload_Click(object sender, EventArgs e) { ...
1
vote
0answers
46 views

TSQL vbinary bitmasking with varbinary right hand side operator

I am looking for some hints or tricks for this design challenge I am up against: I have a need to bitmask two of the same size varbinary fields stored in the database. Just to clarify, no this is not ...
1
vote
1answer
43 views

Stored procedure invocation with VARBINARY(MAX) parameters fails with strange error message?

I am trying to store encrypted data into my database (run by MS SQL 2005 Express) using stored procedure. The stored procedure has the following signature: ALTER PROCEDURE [dbo].[SaveData] ...
1
vote
2answers
108 views

c# and sql hexadecimal to varbinary

This has had me puzzled for quite some time, and I have not been able to find a clear answer.. Why is it that while using the Query analyzer in SQL Server 2005 express, I am able to submit a ...
1
vote
1answer
179 views

Saving image to database as varbinary (part 3)

This is yet again a problem I have with saving images in silverlight to my database, I thought I had it all working untill I tried it out with a different image... I save images to my database with ...
1
vote
1answer
74 views

Passing VARBINARY to stored procedure

I have some source data that is formatted as ASCII hexadecimal. I need to get it into a SQL database in VARBINARY fields. I've reduced the problem to the bare minimum to illustrate what I'd like to ...
1
vote
0answers
130 views

Creating a varbinary column in a mysql database using code first Entity framework 4.1

When I try to create a varbinary column "Data" using the entity framework and a code first method by defining data as. Public Property Data() As Byte() The problem is that when I run the program ...
1
vote
1answer
240 views

Operand Type Clash

I have a long stored procedure and when I execute the procedure I get the following error: Msg 206, Level 16, State 2, Line 1 Operand type clash: varchar(max) is incompatible with sql_variant So to ...
1
vote
3answers
89 views

How to Convert an Enum to an array of Bytes?

I have an enum as below: [Flags] public enum AggregationLevel { /// <summary> /// 00000001 /// </summary> Department = 1, /// <summary> /// 00000010 /// ...
1
vote
1answer
116 views

MySQL case insensitive search on varbinary field?

I have a varbinary field id like to do a case-insensitive search on. I know that the way varbinary fields work prohibits you from doing something like so: WHERE LOWER(page_title) = LOWER("Gasket") ...
1
vote
1answer
632 views

varbinary to varchar w/o master.dbo.fn_varbintohexstr

Is there any way to convert varbinary to ASCII varchar string (base64, md5, sha1 - no matter) without master.dbo.fn_varbintohexstr function on MS SQL Server 2005? Because it can't be used inside of ...
1
vote
3answers
193 views

XML in C# to varbinary column in SQL

I have an XmlDocument object that I load from a file. XmlDocument xmlDoc = new XmlDocument(); xmlDoc.Load("C:\\myxml.txt"); I need to convert this XML Document to a format that is compatible with ...
1
vote
1answer
60 views

How to composite two varbinaries

I have two varbinary masks: @mask1 = 0x0000000000000001 @mask65 = 0x7FFFFFFFFFFFFFFF0000000000000003 I have to 1) composite them to get something like this @mask_composite = @mask1 | @mask65 ...
1
vote
1answer
748 views

How to convert varbinary data type back to ascii in MSSQL

I am trying to get RTF data out of a image date field in MS SQL. Not so easy. The issue is that when I do a straight binary dump of the data field it is not in RTF format. Let me explain what is ...
1
vote
1answer
288 views

stream varbinary PDF file from SQL 2005 to browser using ASP

I have a commercial program that stores PDF files to SQL 2005. I would like to be able to search for (I have that part) and then display the PDF file in a browser. It's the 'display the PDF file' that ...
1
vote
1answer
312 views

Working with Binary Data in MySQL

SELECT 0x0000987C As col1, substr(BinaryData,1,4) As col2, CAST(0x0000987C AS SIGNED) As col3, CAST(substr(BinaryData,1,4) AS SIGNED) As col4 FROM ( SELECT ...
1
vote
1answer
154 views

Varbinary always is null at WCF service

my DAL is something like this: Database db = EnterpriseLibraryContainer.Current.GetInstance<Database>(); mylist = db.ExecuteSprocAccessor<EMyClass>("spMySP", param1, param2).ToList(); ...
1
vote
2answers
550 views

MySQL: Cannot create table with VARBINARY?

I am running this query to set up a VARBINARY (I wish for it to be so, for a real reason) field for my database: CREATE TABLE `test_books` (`id` int UNSIGNED NOT NULL,`book` VARBINARY, `timestamp` ...
1
vote
1answer
564 views

Primary Key - VARBINARY or BLOB or VARCHAR for UUID primary key

I am using UUID as the primary key in one of the tables. What are the pros-cons of having this field as a varchar/varbinary/blob?
1
vote
1answer
362 views

Getting a sql varbinary record using microsoft enterprise library

I have this line of code byte[] field1 = (reader.GetSqlBinary(reader.GetOrdinal("Field1")).Value; which is a SqlDataReader I am trying to convert the code to use the enterprise library data access ...
1
vote
1answer
407 views

Are there performance problems in querying non varbinary(max) fields in a table containing varbinary(max) data?

I created a table to insert all the documents of my application. It is a simple table (let's call it DOC_DATA) that has 3 fields: DOC_ID, FileSize, Data. Data is varbinary(max). I then have many ...
1
vote
3answers
1k views

SQL Server: How to copy a file (pdf, doc, txt…) stored in a varbinary(max) field to a file in a CLR stored procedure?

I ask this question as a followup of this question. A solution that uses bcp and xp_cmdshell, that is not my desired solution, has been posted here. I am new to c# (since I am a Delphi developer) ...
1
vote
4answers
1k views

Set Linq To Sql Binary field to null

Trying to set a Binary field to null gives me an ArgumentNull exception. I can set the field to be empty like this new Binary(new byte[] {}); but that's not null just an empty column. Is there a ...
1
vote
4answers
1k views

How to improve performance in SQL Server table with image fields?

I'm having a very particular performance problem at work! In the system we're using there's a table that holds information about the current workflow process. One of the fields holds a spreadsheet ...
1
vote
1answer
425 views

How to store varbinary in MySQL?

Just a quick question.. Out of two options mentioned below, how to store to varbinary column in MySQL? public_key = '67498930589635764678356756719' or public_key = 67498930589635764678356756719 ...
1
vote
1answer
541 views

Pre-allocate varbinary(max) without actually sending null data to the SQL Server?

I'm storing data in a varbinary(max) column and, for client performance reasons, chunking writes through the ".WRITE()" function using SQL Server 2005. This works great but, due to the side effects, I ...
1
vote
1answer
253 views

equivalent of SQL binary relative value test in C#

I am trying to figure out the equivalent C# for this SQL: @var1 = "1a1" @var2 = "1F" CONVERT(varbinary, @var1) > CONVERT(varbinary, @var2) Is it the same as this? if (var1.CompareTo(var2) > ...

1 2 3