ORA-13036: Operation [string] not supported for Point Data
Cause: The specified geometry function is not supported for point data.
Action: Make sure that the specified geometry function is not called on point data.
ORA-13036意味着您正在尝试的操作不支持在点数据中执行。
ORA-13036是由于尝试对具有点 geometries 或属性的文件中的数据执行不支持操作而引起的 Oracle 错误。
这个错误通常发生在试图执行操作,如对具有空间索引的表(SPT)执行基本上仅适用于普通表(PT)的操作期间。
1.检查您尝试执行的操作是否适用于 Point Data;
2.通过将 Point Data 转换为普通表,尝试执行操作;
3.如果Point Data转换失败,请联系Oracle for assistance。