ORA-19010: Cannot insert XML fragments ORACLE 报错 故障修复 远程处理
文档解释
ORA-19010: Cannot insert XML fragments
Cause: XML fragments got from extractNode cannot be inserted into the database.
Action: Convert the fragment into a proper XML document before insertion.
ORA-19010: 不支持插入XML片段
官方解释:
ORA-19010是一个发生在XML DB中的警告,它代表不可能插入XML片段。
常见案例:
当在XML中使用insert语句,可能会触发ORA-19010。
正常处理方法及步骤:
1. 确定插入语句是否有XML片段。
2. 修改查询以避免包含XML片段,或者使用DBMS_XMLQUERY库函数来向XML字段中插入XML数据。
3. 重新运行语句,观察结果。