ORA-31080: type not specified for attribute or element “string”
Cause: The identified attribute or element does not have a type.
Action: Make sure that every attribute and element has a valid type specification.
(1)官方解释
该Oracle错误是由Oracle服务器引发的一个错误,它指出当建立xml元素或属性时未指定数据类型。
在使用Oracle建立XML元素或属性时可能出现此错误。例如,以下查询:
select XMLType(‘ ‘) from dual;
会引起此错误,因为属性的类型未指定。
(3)正常处理方法及步骤
用于解决此错误的正常方法是指定xml元素或属性的数据类型。 将上面的查询更改为以下内容:
select XMLType(‘ ‘) from dual;
这将指定属性的类型,并且应消除此错误。