Vous pouvez les remplacer directement à partir de SQL en faisant correspondre "\r" à la fin, puis en remplaçant ce "\r".
Exemple :
UPDATE Person SET firstName = REPLACE(firstName, '\n', '')
where firstName LIKE '%\n'
ou
UPDATE Person SET firstName = REPLACE(firstName, '\r', '')
where firstName LIKE '%\r'