I have an existing SDO_GEOMETRY in Oracle 18c:
sdo_geometry(2003, null, null, sdo_elem_info_array(1, 1003, 1),
sdo_ordinate_array(665287.423,4857578.086, 676832.320,4878119.585))
In the sdo_elem_info_array
varray, I want to replace the final 1 with a 3:
- Before: (1, 1003, 1)
- After: (1, 1003, 3)
How can I replace that value in the sdo_elem_info_array
varray?