I mean, you have points in your shape(s) too close to each other.<br>When you are importing them, oracle "interprets" them as the same point (ORA-13356) or overlapping ones (ORA-13349).<br>ways to escape <br>- "simplify" 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 ('LAYER','COLUMN',<br>
mdsys.sdo_dim_array(<br>
mdsys.sdo_dim_element('X',minX,maxX, toleranceX),<br>
mdsys.sdo_dim_element('Y',minY,maxY, toleranceY)<br>
), <br>
SRID), so that toleranceX and toleranceY are small enough to serve your shapes<br><br>regards, michael<br>