Using a SSIS XML Source I would like to read the following XML
<Stock>
<OnHand>1</OnHand>
<Proximity>xx</Proximity>
<Reserved>2</Reserved>
<Proximity>yy</Proximity>
<OnOrder>3</OnOrder>
<Proximity>zz</Proximity>
<Cbo>4</Cbo>
<Proximity>zz</Proximity>
</Stock>
The XML cannot be changed because it is an international standard called Onix
.
As you can see there is a Proximity after each row.
I would somehow like to store them in the right order, or call the Proximity after OnHand
for OnHandProximity
.
The schema that follows this XML looks like this:
<xs:sequence>
<xs:element ref="OnHand" />
<xs:element minOccurs="0" ref="Proximity" />
<xs:sequence minOccurs="0">
<xs:element ref="Reserved" />
<xs:element minOccurs="0" ref="Proximity" />
</xs:sequence>
<xs:sequence minOccurs="0">
<xs:element ref="OnOrder" />
<xs:element minOccurs="0" ref="Proximity" />
</xs:sequence>
<xs:sequence minOccurs="0">
<xs:element ref="CBO" />
<xs:element minOccurs="0" ref="Proximity" />
</xs:sequence>
</xs:sequence>
Unfortunately this correctly gives this error in SSIS XML Source:
The XML Source was unable to process the XML data. Ambiguous complexType definition. The element "stock" has multiple members named "Proximity".
And my question is of course if anyone have suggestions for handling XML like this without loosing the information that the relative position is.
There also is detail that the lines are not mandatory, but I think a first solution can ignore that detail.
A work-around could be transforming the XML before importing. Consider do something like the following.
As I am not the best in stylesheet transformation - feel free to comment or provide better solutions.