From my experiments, it does not appear to do so. If this is indeed true, what is the best method for removing line breaks? I\'m currently experimenting with the parameters
select trim(both '\r\n' from FIELDNAME) from TABLE; should work if select trim(both '\n' from FIELDNAME) from TABLE; doesn't work.
select trim(both '\r\n' from FIELDNAME) from TABLE;
select trim(both '\n' from FIELDNAME) from TABLE;