September 25, 2008 at 6:06 am
what is meant by 0x08000000 in sql server or for what purpose is it used ?
September 25, 2008 at 6:16 am
Hi There,
As far as I understand:
& Performs a bitwise logical AND operation between two integer values.
0x08000000 is a VARBINARY value for an integer in this case 134217728
SELECT 4 & 0x08000000,
CAST (0x08000000 as INT)
so you doing a bitwise logical AND between 4 and 134217728
----------------------------------------------
Try to learn something about everything and everything about something. - Thomas Henry Huxley
:w00t:
Posting Best Practices[/url]
Numbers / Tally Tables[/url]
September 25, 2008 at 8:13 am
Hi There,
Sorry I just saw that you edited your post.
Are you still looking for an explination?
----------------------------------------------
Try to learn something about everything and everything about something. - Thomas Henry Huxley
:w00t:
Posting Best Practices[/url]
Numbers / Tally Tables[/url]
September 26, 2008 at 4:23 am
Thanks Chris.. thank you very much...
This gives lot of clues ....:)
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply