All,
How to create an MD5-hash of an SDO_GEOMETRY-field?
I started with converting SDO_GEOMETRY to WKT with the sdo_util.to_wktgeometry-function but this conversion is way to slow because this returns a CLOB.
I then found a package (here: https://github.com/TolonUK/general/tree/master/plsql/sdo_geometry_transport ) which converts SDO_GEOMETRY to varchar2
REALLY FAST but if the SDO_GEOMETRY-object is too big, this package returns an error because varchar2 can only be 4000 bytes/32K bytes - I have SDO_GEOMETRIES
of 70K+ ...
Thanks!