I am trying to update a field in a database table using a stored procedure that
accepts an XML string. Here is an example of the string:
<DATA><FIELDS><UNIT_NUMBER>1</UNIT_NUMBER><TERRITORY>77</TERRITORY></FIELDS I am trying to update rows that exist in a table with the <TERRITORY> value.
<FIELDS><UNIT_NUMBER>2</UNIT_NUMBER><TERRITORY>72</TERRITORY></FIELDS></DAT
However, I can't seem to do this. I can't seem to parse through the XML to get
the territory value for unit_number 2. Any ideas?