ORA-13365: layer SRID does not match geometry SRID
Cause: The spatial layer has a geometry with a different SRID than the SRID specified for the layer.
Action: Make sure that all geometries in a layer have the same SRID and that the SRIDs match the SRID for the layer in the USER_SDO_GEOM_METADATA view.
ORA-13365意味着图层(layer)的空间参考系统(SRID)与几何体(geometry)的空间参考系统不匹配。
正常处理方法及步骤:
1.确保你在构造几何体时正确指定SRID;
2.确保每个表格中的SRID与存储几何体的字段SRID匹配;
3.如果SRID更改了,那么将需要重建表格的空间索引;
4.使用ST_Transform将几何体转换为正确的SRID,以便可以插入到指定表格中;
5.检查和更新指定字段的SRID;
6.重建表的空间索引。