Hello all,
I have an Oracle Spatial table that contains some records with a Point geometry and some records with a Polygon geometry.
Considering the large number of records, I would like to take advantage of the ability of the Oracle Spatial Reader to perform a SELECT within the Oracle database and return only records with a Point geometry
(This is preferable to Reading all records and then using a GeometryFilter for performance reasons)
How to I write the SELECT statement?
I assume it has something to do with SDO_GEOMETRY, but I just cannot get the syntax correct