文档解释
ORA-19293: XQST0058: It is a static error if multiple schema imports specify the same target namespace
Cause: An error occurred during the processing of the XQuery expression.
Action: Check the detailed error message for the possible causes.
。
ORA-19293:XQST0058是一个静态错误,意味着程序在除了运行期外,已经发现了某种异常行为。这是一个XQuery标准的错误,指出如果多个模式导入声明了相同的目标命名空间,就会导致静态错误。
官方说明:在XML Query文档中,“XQST0058:如果多个Schema Imports指定了相同的目标命名空间,则报告静态错误”。
常见案例
例如,下面的例子,两个Schema Imports指定了相同的目标命名空间,将导致ORA-19293:XQST0058错误:
import schema “http://www.mynamespace.com/mytypes.xsd” at “mytypes.xsd”;
import schema “http://www.mynamespace.com/mytypes.xsd” at “mytypes2.xsd”;
一般处理方法及步骤
要解决这个错误,需要确保执行正确的操作:
1.确保被导入的schema指定的目标命名空间不同。
2.确保被导入的schema有不同的文件名。
3.了解这个错误是如何出现的,以便避免将来再次发生。