data type conversion - How to convert an Oracle column value of datatype SDO_GEOMETRY to String which has ST_IsValid=false -


is there function or way convert sdo_geometry datatype string in oracle ?

get_wkt() doesn't work sdo_geometry not formed (st_isvalid=false).

the best way write own oracle function my_get_wkt(), use as

update my_table set my_col = my_get_wkt(params); 

Comments

Popular posts from this blog

javascript - Knockout pushing observable and computed data to an observable array -

'hasOwnProperty' in javascript -

Trouble making a JSON string -