How to add xml encoding <?xml version=“1.0” encoding=“UTF-8”?> to xml Output in SQL Server

后端 未结 4 1232
夕颜
夕颜 2020-11-28 15:59

Probably a duplicate of unanswered. SQL Server 2008 - Add XML Declaration to XML Output

Please let me know if this is possible. I read in some blogs

http://

相关标签:
4条回答
  • 2020-11-28 16:05

    When I read this post I thought it was the "end of the line"... no solution... I almost gave up on the approach... but in fact there is a way to work around this limitation by converting the XML to varchar(max) and then appending the declaration to the beginning of the string. The following post shows how:

    Using SQL Server "FOR XML": Convert Result Datatype to Text/varchar/string whatever?

    A simple example would look something like this:

    SELECT 'MY DATA' As MyColumn INTO #MyTable 
    SELECT '<?xml version="1.0" encoding="UTF-8"?>' + 
    CAST((SELECT MyColumn FROM #MyTable FOR XML PATH('')) AS VARCHAR(MAX)) AS XmlData
    DROP TABLE #MyTable 
    

    The Output:

    <?xml version="1.0" encoding="UTF-8"?>
    <MyColumn>MY DATA</MyColumn>
    
    0 讨论(0)
  • 2020-11-28 16:05

    The accepted answer of "add it manually", while technically correct, is incomplete and hence misleading. Simply adding the XML declaration with whatever "encoding" you want doesn't change the actual encoding of the string. This is sometimes ok. If you specify "UTF-8" and convert the XML data to VARCHAR, then as long as all of the characters are standard ASCII characters (values 1 - 127), then sure, it's UTF-8 (at least there is no noticeable difference). BUT, if there are any characters with values 128 or above, then you do not have a UTF-8 encoded XML document. And if you convert the XML data to NVARCHAR, then you have a UTF-16 encoded document, regardless of what you manually specify in the XML declaration. You should only be specifying an encoding IF it is the actual encoding being used.

    And until SQL Server 2019 (currently in beta at CTP 2.1), there was no way to get the encoding to be UTF-8 within SQL Server, at least not without using SQLCLR. But in SQL Server 2019, you can now convert the XML to actual UTF-8:

    DECLARE @XML XML;
    SET @XML = N'<test attr="&#x1F60E;"/>';
    SELECT @XML,
           CONVERT(VARBINARY(100), CONVERT(NVARCHAR(MAX), @XML)), -- UTF-16 / UCS-2
           CONVERT(VARBINARY(100),
                   CONVERT(VARCHAR(MAX),
                           CONVERT(NVARCHAR(MAX), @XML) COLLATE Latin1_General_100_CI_AS_SC_UTF8)
                  ); -- UTF-8
    

    That returns:

    Column 1: <test attr="                                                                    
    0 讨论(0)
  • 2020-11-28 16:06

    I have been working with this matter during the last days, and although there might be better solutions, I have ended up quite happy with this bash script:

    iconv -f UCS-2 -t UTF-8 products.xml > products_utf8.xml
    echo "<?xml version='1.0'?>\n<products>\n$(cat products_utf8.xml)\n</products>" > products_utf8_final.xml
    

    Basically, this script will get a file generated from the horrible bcp software, which generates incomplete and invalid XML data, convert it from the UCS-2 format to UTF-8 (first row), and add at the beginning and end of the file what it needs (second row of the script) to be valid and complete.

    It works for me. The script I used to generate the XML file with BCP is:

    bcp.exe "select * from dat1.dbo.Products FOR XML AUTO,ELEMENTS” queryout "C:\products.xml" -T -w -r -S .\SQLEXPRESS
    
    0 讨论(0)
  • 2020-11-28 16:11

    You have to add it manually. SQL Server always stores xml internally as ucs-2 so it is impossible for SQL to generate it a utf-8 encoding header

    See "Limitations of the xml Data Type" on MSDN

    The XML declaration PI, for example, <?xml version='1.0'?>, is not preserved when storing XML data in an xml data type instance. This is by design. The XML declaration (<?xml ... ?>) and its attributes (version/encoding/stand-alone) are lost after data is converted to type xml. The XML declaration is treated as a directive to the XML parser. The XML data is stored internally as ucs-2.

    0 讨论(0)
提交回复
热议问题