I have a SQL query I am using to export to XML that works great:
SELECT remarks AS comments from Table1
I have no control over table and am only perform SELECT to it. The challenge I am facing is that some of the records have line breaks in this free text column that is causing the XML to "break".
Is there a way within the query itself to suppress or remove the line breaks and any other potentially bad characters?