I have a table in a SQL Server 2005 database that records purchases like this:
ID (PK, int, not null)
Request (text, null)
Response (text, null)
MerchantId (varchar(14), null)
Amount (money, null)
The request and response fields do store XML. I cannot change the data type in XML. I need to draw a query that will receive data from two text-as-XML fields in addition to the data that is in the table itself.
I'm not sure where to start. Most of my searches come back with LINQ-to-SQL questions, and the SQLXML results that I get do not seem to be able to process datasets. Where should I focus my search?
source
share