April 7, 2009 at 12:09 pm
How may I identify all records associated with a field(s) containing an embedded carriage return?
April 7, 2009 at 12:15 pm
something like
SELECT * From YOURTABLE
WHERE FIELDNAME LIKE '%' + CHAR(10) + CHAR(13)+ '%'--vbCrLf
Lowell
April 7, 2009 at 12:21 pm
It depends on your environment, but if data was generated under Windows you should use
LIKE ('%' + CHAR(13) + CHAR(10) + '%')
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply