文档解释
ORA-13264: geometry identifier column string does not exist in table string
Cause: The specified table does not contain a GID column.
Action: Confirm that the GID column name was correctly specified and that it exists in the specified table.
ORA-13264:指定的几何标识列不存在于此表中。
官方解释
常见案例
正常处理方法及步骤
1.首先检查指定的表,确定指定的几何标识列是否存在于此表;
2.再检查指定的列是不是要求的类型,必须是ST_Geometry类型;
3.如果两个步骤都符合要求,说明可能是不是正确的对象模式导致的,可以通过更正对象模式来解决;
4.如果以上检查都不能帮助,可以尝试检查一下是否有与表一起创建的存储过程、触发器等脚本,看看是不是其中的异常导致的。