Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I can not read my geometry field on an Oracle database,
can you please help me please
You need to convert your Geometry column to verticles before reading it in Talend.
Trt this in tOracleInput
"select ts.x lon ,ts.y lat from yourtable ,table(sdo_util.getvertices(yourGeoColumn)) ts "
Read these column as double.
As you dealing with Geometry Data , below would helpful
Hope this will help.