There is coordinate data which is stored in a BLOB, similar to the arcgis ST_GEOMETRY type of points. The storage contains the byte stream of the point coordinates that define the geometry like this:
How can I get the data from the BLOB in Oracle?
There is coordinate data which is stored in a BLOB, similar to the arcgis ST_GEOMETRY type of points. The storage contains the byte stream of the point coordinates that define the geometry like this:
How can I get the data from the BLOB in Oracle?
BLOBs are binary data. They could contain literally anything. Oracle has no built-in mechanism for extracting data from a BLOB. Your options are:
This is why storing data in binary is usually a bad idea. Sure, you save space but essentially this obfuscates the data and imposes a toll on using it. If storage is that much of an issue consider compression instead.