I need to get an xml file that is stored as image data in SQL Server.
I use this query -
select convert(varchar, convert(binary, zd.validcontent)) from zonedata zd join contentitem ci on zd.itemid = ci.itemid where id = @dpathid
I get the text, but the result returns only a small part of the xml file -
<?xml version="1.0" encoding="
Please, help. Thanks.
source share