Hex constants in insert statements for Number datatypes
Is there any way to specify Hexidecimal constants for initializing Number data types? Something like this?
INSERT INTO MyTable (MyNumber9Column) VALUES(0x11000 ); -- won't work
I realize that Raw datatypes can store hex values, but we would like to store them in Number datatypes due to legacy code.
Thanks,
-R