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

c# - Update a combobox from a presenter (MVP) -

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

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -