文档解释 ORA-13068: wrong table or column name in SDO_TOPO_GEOMETRY constructor Cause: An SDO_TOPO_GEOMETRY constructor was
ORA-13068: wrong table or column name in SDO_TOPO_GEOMETRY constructor
Cause: An SDO_TOPO_GEOMETRY constructor was invoked with incorrect parameters for table name and/or column name.
Action: Fix the parameters in the call and try again.
ORA-13068:SDO_TOPO_GEOMETRY构造函数中有错误的表或列名
由此错误,表明构造SDO_TOPO_GEOMETRY实例时,指定的表或列名错误。
ORA-13068:错误的表或列名在SDO_TOPO_GEOMETRY构造函数中
此错误消息指示错误的表或列名在SDO_TOPO_GEOMETRY构造函数中。检查表或列名是否正确,并确保当前用户具有相应的SELECT权限。
在oracle数据库中,使用SDO_TOPO_GEOMETRY定义几何类型时,可能会发生ORA-13068:
例如:
CREATE TABLE my_table (geom SDO_TOPO_GEOMETRY);
sql> INSERT INTO my_table VALUES (
SDO_TOPO_GEOMETRY(
2003,–2-dimensional polyGon
NULL,
NULL,
SDO_ELEM_INFO_ARRAY(1,1003,1),–Rectangle (no arcs or edges)
SDO_ORDINATE_ARRAY(2,2,10,10)
)
);
INSERT INTO my_table
*
ERROR at line 1:
ORA-13068: Wrong table or column name in SDO_TOPO_GEOMETRY constructor
1. 检查构造SDO_TOPO_GEOMETRY时指定的表或列名,确保它们是正确的。
2. 确保当前用户拥有相应表和列的SELECT权限。
3. 尝试重新构造SDO_TOPO_GEOMETRY实例。
--结束END--
本文标题: ORA-13068: wrong table or column name in SDO_TOPO_GEOMETRY constructor ORACLE 报错 故障修复 远程处理
本文链接: https://lsjlt.com/news/540025.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0