I have done a lot of researching on the net for the answer to this question. I have found a lot of help sites but I'm not getting the results unfortunately (I don't really understand XML).
I have a table (called CustomField.PersonCustomFieldValue) that has an XML datatype column (called XmlValue) which stores XML data. I am unsure how to extract the values.
An example of the data stored in the column is:
<XmlDataValue xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><Value xsi:type="xsd:string">NO</Value></XmlDataValue>
How do extract the Value string? In this case - "No".
Thanks very much.