Jun 25, 2002 #1 bugzLue IS-IT--Management Feb 27, 2001 57 US I am looking to find out what the 0x0000FFFF means, any help would be great Thanks RETURN ( cast( ((@jctID / power(cast(2 as bigint),32)) & 0x0000FFFF ) AS INT)); END Live to learn or die trying
I am looking to find out what the 0x0000FFFF means, any help would be great Thanks RETURN ( cast( ((@jctID / power(cast(2 as bigint),32)) & 0x0000FFFF ) AS INT)); END Live to learn or die trying
Jun 25, 2002 #2 essa2000 Programmer Dec 6, 2000 299 CA Dear ; I think it is hexadecimal no. and you can see it to cast it as integer. Select cast(0x0000FFFF as int) as DecimalNumber It will give you 65535. So , I think it is that. Regards, Muhammad Essa Mughal Upvote 0 Downvote
Dear ; I think it is hexadecimal no. and you can see it to cast it as integer. Select cast(0x0000FFFF as int) as DecimalNumber It will give you 65535. So , I think it is that. Regards, Muhammad Essa Mughal