我正在尝试从 json 文件转换然后加载到 oracle 数据库中
但是,当我尝试处理长度大于 10 个字符的数字时,我收到以下错误:
java.sql.SQLException: class java.sql.SQLException
oracle.odi.jdbc.driver.xml.io.exception.PipelineStageException: ORABPEL- 15235
Translation Failure.
Failed to translate JSON to XML. class java.sql.SQLDataException said data exception: numeric value out of range
The incoming data does not conform to the NXSD schema. Please correct the problem.
我使用的 XSD 文件的结构如下:
<xsd:element name="Root-Element">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="recordId" type="xsd:long"/>
我试图读取的 json 文件是:
{
"recordId" : "5931231231123"
}
我在 xsd 类型上找到的唯一文档是: http ://www.w3.org/TR/xmlschema-2/#long
如果数字是 10 个或更少的字符,或者如果我将元素类型更改为 xsd:string,则文件被正确处理