Hmm... would converting the data to VARBINARY be an option to you?
Then you can use the bitwise operations on a much larger set of bits.
select bitcount (to_varbinary(1234567890123456789012345678901234567890)) bitcount from dummy
BITCOUNT
135
- Lars
Hmm... would converting the data to VARBINARY be an option to you?
Then you can use the bitwise operations on a much larger set of bits.
select bitcount (to_varbinary(1234567890123456789012345678901234567890)) bitcount from dummy
BITCOUNT
135
- Lars