Finding Newline Characters With SQL
I ran into something today that I've never had to do before: I needed to select rows from a SQL Server database table where a column had a newline character (CR+LF). After a little searching I found one approach.
SELECT *
FROM Table
WHERE PATINDEX('%'+CHAR(13)+CHAR(10)+'%',Column) > 0
I hadn't used SQL Server's PATINDEX function before, but it looks like it could be pretty useful. If anyone has another approach please let me know.

WHERE
Column LIKE '_%#Chr( 13 )##Chr( 10 )%'
The "_" requires at least one character before the first line return.
@Ben [LIKE] is far more slow than PATINDEX.
Thanks for the tip. Good to know that kind of stuff - still learning over here :)
Sorry, I misunderstood your post the first time I read it. I didn't realize that PATINDEX() returned a one-based result. Therefore, when you had a "> 0", I thought that meant AFTER the first characters. I now know that you were checking for any existence. Ooops :) My original comment made no sense.