Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
In the past, according to my observations, it was the combination of the hex values of the two values. This seems to have changed.
Do you have a hint for me?
Thank you very much
perl -e "printf q(%2x%04x %x), 36, 98, 2359394
240062 240062
perl -e "printf q(%d %d), 2359394 / 0x10000, 2359394 % 0x10000
36 98
perl -e "printf q(%2x%04x %x), 36, 98, 2359394
240062 240062
perl -e "printf q(%d %d), 2359394 / 0x10000, 2359394 % 0x10000
36 98
Hello,
Thank you very much. That was very helpful.
Is there a way to determine this using SQL on the database itself? I don't have access to the db server.
Thanks!
Jamie Kay