vote up 1 vote down star

Is there any advantage of using int vs varbinary for storing bit masks in terms of performance or flexibility.

For my purposes, I will always be doing reads on these bit masks (no writes or updates).

flag

4 Answers

vote up 5 vote down check

You should definitely use an INT (if you need 32 flags) or BIGINT (for 64 flags). If you need more flags you could use VARBINARY (but you should probably also ask yourself why you need so many flags in your application).

Besides, if you use an integral type, you can use standard bitwise operators directly without converting a byte array to an integral type.

link|flag
yeah, or event the smaller types like tiny int for smaller bit masks? I have never used a tiny int as bit mask yet, but should be no issue. int's work great. – Chad Grant Apr 30 at 23:10
Smaller types for smaller masks is also a good idea. – rwwilden May 2 at 8:23
vote up 1 vote down

Well, considering an int has less storage space and is generally a little easier to work with I'm not sure why you'd use a varbinary.

link|flag
vote up 1 vote down

It is generally considered preferable to use a bunch of bit columns instead of a bit mask. They will get packed together in the page, so they won't take any more room. Although I too always seem to go with an int or bigint column to avoid all of the column name typing.. but with intellisense I would probably go with the bit columns.

link|flag
1  
I disagree, bitmasks still have their place and they are a great way to leave your options open without having to refactor your DB and SELECTS/VIEWS/SPROCS just to add a simple bool, they are very flexible ... just most programmers dont understand what they are these days – Chad Grant Apr 30 at 23:12
vote up 1 vote down

I usually agree with @hainstech's answer of using bit fields, because you can explicitly name each bit field to indicate what it should store. However I haven't seen a practical approach to doing bitmask comparisons with bit fields. With SQL Server's bitwise operators (&, |, etc...) it's easy to find out if a range of flags are set. A lot more work to do that with equality operators against a large number of bit fields.

link|flag

Your Answer

Get an OpenID
or

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