ORA-54658: CREATE_TIN: input extent cannot be null
Cause: The extent of the TIN was null.
Action: Specify an extent for the TIN that is not null.
。
ORA-54658: CREATE_TIN 错误表明,为创建三角网格索引(TIN)提供的输入范围不能为 NULL。
1.在使用 SDO_TIN.CREATE_TIN 函数之前,所提供的 EXTENT 参数不能为 NULL,必须是有效的范围。
2.可以执行以下命令检查 EXTENT 参数的有效性,以避免发生此错误:
SELECT MIN(x) as xmin, MIN(y) as ymin, MAX(x) as xmax, MAX(y) as ymax FROM ;