ORA-64103: Cannot create an XMLIndex on an object-relational XML type table or column.

文档解释

ORA-64103: Cannot create an XMLIndex on an object-relational XML type table or column.

Cause: An attempt was made to create an XMLIndex on an XML type table or column that uses the object-relational storage model.

Action: The object-relational storage model does not support an XMLIndex.

ORA-64103错误消息指出,不可以创建XMLIndex下的对象关系型的XML格式的表或列。这是因为对象关系型的XML格式不支持创建XML索引。

官方解释

常见案例

一般处理方法及步骤

(1)在创建XMLIndex之前,需要将XMLType表改为标准的XML格式。

(2)将XMLType表更改为标准的XML格式可以使用XMLType函数或者用户定义函数(UDF)。

(3)确保改变后的XMLType表使用标准XML格式后,再创建XMLIndex。

你可能感兴趣的