I mean, you have points in your shape(s) too close to each other.<br>When you are importing them, oracle &quot;interprets&quot; them as the same point (ORA-13356) or overlapping ones (ORA-13349).<br>ways to escape <br>- &quot;simplify&quot; your shapes - delete adjacent points (too close ones)<br>

- change your metadata for the layer (insert or update)<br><br>insert into USER_SDO_GEOM_METADATA<br>
values (&#39;LAYER&#39;,&#39;COLUMN&#39;,<br>
   mdsys.sdo_dim_array(<br>
      mdsys.sdo_dim_element(&#39;X&#39;,minX,maxX, toleranceX),<br>
      mdsys.sdo_dim_element(&#39;Y&#39;,minY,maxY, toleranceY)<br>
      ), <br>
   SRID), so that toleranceX and toleranceY are small enough to serve your shapes<br><br>regards, michael<br>