ORA-64143: Can only share an existing XMLIndex table with an XMLTYPE column. ORACLE 报错 故障修复 远程处理
文档解释
ORA-64143: Can only share an existing XMLIndex table with an XMLTYPE column.
Cause: An attempt was made to share a table without an XMLTYPE column.
Action: Drop the group containing the XMLIndex table without an XMLTYPE column and re-create the group with new definition.
此错误是Oracle报出的XML 索引错误,指出我们只能够将存在XMLType列的现有XML索引表进行共享。
官方解释
此错误指出只有通过创建XMLType列的现有表来共享XML索引。因此,我们需要确认将共享的XML索引表是否有现有的XMLType列。
常见案例
在Oracle数据库中,使用“createXMLIndex”语句创建XML索引时,没有使用XMLType列,就会遭遇此错误。
一般处理方法及步骤
要解决此错误,需要首先在要共享的表中创建XMLType列,然后执行“createXMLIndex”语句,以正确创建XML索引。