我有一张XML,我正在阅读表格。我有这个XSD:
<xs:element name="ListingDescription"
type="xs:string"
minOccurs="0"
maxOccurs="1">
<xs:annotation>
<xs:documentation>
This is a longer description of the listing.
</xs:documentation>
<xs:appinfo>
<retsid>101950</retsid>
</xs:appinfo>
</xs:annotation>
</xs:element>
由于某种原因,我在这种情况下xs:string
默认为255,并且相关XML中的数据大于此值。我试图用更大的长度更新SSIS包中的XMLSource阶段,但是xsd保持覆盖到255.如何将xs:string
修复为可以提供给nvarchar(4000)的东西?
感谢