The best way to handle XML files with marker β€’

For the generated XML file, I have data containing a bullet. β€’ What is the best method for processing this in XML data? It opens in an XML editor and reads fine, but I can’t import the file via SSIS, I get an error message.

<xmldata>β€’ Bullet</xmldata>

It is fine, but it cannot import using SSIS.

+5
source share
2 answers

The data you received is not well-formed XML. It can be <, and >in it, but it is not XML. The program that generated it is corrupted and needs to be fixed.

, , ? , "XML", , , , , , XML.

0

:

&#8226;
+11

All Articles