文档解释
ORA-19295: XQST0060: It is a static error if the name of a function in a function declaration is not in a namespace (expanded QName has a null namespace URI)
Cause: An error occurred during the processing of the XQuery expression.
Action: Check the detailed error message for the possible causes.
该错误表明,在函数声明中,如果函数名不在命名空间(展开QName的命名空间URI为空)中,则是一个静态错误。
官方解释
常见案例
一般处理方法及步骤
1、确保全局namespace是定义在XML文档之外,或者是声明的模块的根元素的内部。
2、在模块级别声明数据类型的定义以及参数类型的定义。
3、声明默认函数命名空间(optional)。
4、确保在函数定义中的QName命名使用的模块的namespace,如果不使用,请声明命名空间(namespace-uri)和前缀(prefix)。