Actually, I screwed up and thought this was an ADO.NET question, but it's not. Anyways, do you have the capabilities to use VBA? You could do it that way. It's been a while. Basically, in the
VB module, you search through the records, and replace vbCrLf with an empty string, such as:
replace(strText, vbCrLf, "")
You may be able to do this with an update statement in SQL, but I'm not sure.
Sorry about that,
Brian