timscronin
MIS
I have an INQ table which has a date field, orderid and a request type which is actually a big xml string. the data looks like this
<NewOrder><SiteID>CJC</SiteID><patID>458887</patID><LName>Cronin</LName><FName>tim</FName><EntryID>{7B1A4946-CEC8-4F23-AE89-5C70A6A0F9B2}</NewOrder>
Why I need to do is verify all the tags I need are there. In this case there should be 5. Since the data is in a sql server table, should I try to parse through it, or is there something on the xml side I should try. This is sql 2000
<NewOrder><SiteID>CJC</SiteID><patID>458887</patID><LName>Cronin</LName><FName>tim</FName><EntryID>{7B1A4946-CEC8-4F23-AE89-5C70A6A0F9B2}</NewOrder>
Why I need to do is verify all the tags I need are there. In this case there should be 5. Since the data is in a sql server table, should I try to parse through it, or is there something on the xml side I should try. This is sql 2000