文档解释
ORA-13368: simple polygon type has more than one exterior ring
Cause: In a polygon geometry there is more than one exterior ring.
Action: Set the type to be multipolygon if more than one exterior ring is present in the geometry.
等
ORA-13368:simple polygon type有多个外环错误是暗示用户试图在sdo_geometry函数中使用无效的simple polygon类型。
官方解释
ORA-13368 用户试图在sdo_geometry函数中使用非法的简单多边形类型。 必须满足通用几何对象标准,要求简单多边形只能有一个外环(即由一层组成)。
常见案例
ORA-13368错误是常见于构造多边形时出现的,只有一个外部环的多边形,这是通常被称为简单多边形的要求。 建立多边形时,如果含有多个以上的外部环,可以返回此错误。
正常处理方法及步骤
1.检查建立多边形的参数是否符合要求,多边形应该由一层外部环组成。
2.重新构造多边形,确保有正确的参数。
3.重试操作,检查正确性。