Você pode substituí-los diretamente do SQL combinando "\r" no final e substituindo esse "\r".
Exemplo:
UPDATE Person SET firstName = REPLACE(firstName, '\n', '')
where firstName LIKE '%\n'
ou
UPDATE Person SET firstName = REPLACE(firstName, '\r', '')
where firstName LIKE '%\r'