I have an SDE.ST_GEOMETRY value (Oracle 18c):
select
sde.st_geometry('LINESTRING EMPTY', 26917) as shape
from
dual
I want to select one of the ST_GEOMETRY object's attributes:
- Entity
- Numpts
- Minx, miny, maxx, maxy
- Area
- Len
- SRID
- Points
How can I do that with Oracle SQL?