ORA-54654: CREATE_TIN: input points table should not be empty
Cause: The input points table had no data.
Action: Insert data into the input points table, and then create the TIN.
ORA-54654错误表明在调用新建函数CREATE_TIN时,输入的点表为空。
ORA-54654: CREATE_TIN: input points table should not be empty
该错误显示在创建TIN时,输入的点表是空的。应用程序必须向CREATE_TIN函数提供包含至少3个点的有效点表。
当尝试创建一个TIN时,如果用户使用一个空的点表作为输入参数,他将获得ORA-54654错误。
1. 检查编程代码,查看输入点表是否包含至少3个点。
2. 确保点表中的点符合要求。每个点必须具有X,Y及Z坐标,以及无限标记。
3. 将点添加到点表中或修改不符合要求的点。
4. 重新启动CREATE_TIN函数,检查是否成功。