I needed to turn this xml from this:
<Row>
<Columns>
<Column>
<Value>BB1</Value>
<Name>Location</Name>
</Column>
<Column>
<Value>1593338</Value>
<Name>Location_Key</Name>
</Column>
<Column>
<Value>0</Value>
<Name>Quantity</Name>
</Column>
</Columns>
</Row>
<Row>
<Columns>
<Column>
<Value>DR11 40</Value>
<Name>Location</Name>
</Column>
<Column>
<Value>1593251</Value>
<Name>Location_Key</Name>
</Column>
<Column>
<Value>0</Value>
<Name>Quantity</Name>
</Column>
</Columns>
</Row>
To this table with these columns and rows
(Location) (Location_Key) (Quantity)
BB1 1593338 0
DR11 1593251 0
Using Sql Server
I have been trying for weeks but to no avail. Any answer would be greatly aprreciated.
