In my query there is one column of XML datatype.How do i take this column in my reports.When i take this query below it just displays RequestXMl column as text.
SELECT RequestXML ,CreateDate, VendorName, ErrorMessage, ResponseDate
FROM tblBPINTIEEUploadRequestLog
WHERE (CreateDate BETWEEN @startdate AND @enddate) and VendorName=@vendorname
I want that when user view reports RequestXML should show a link and user should be able to click on that link to open the xml.How do i do that?