I recently had an issue with an SSIS package where it failed to export the data in a SQL table. I was able to narrow down the problem to a record which contained a strange character in one field. The field was CUST_NAME and the value in it was:
GUY & O�NEILL, INC.
Of course, the question mark inside the diamond should have been an apostrophe.
Is there any way to track these sort of strange characters using a query? I'd want to search the whole table, but for all "out of the ordinary" characters. I have no idea where to even start.
LIKE '%[^A-z ]%'work? That will, of course, also flag due to the comma and the period.nvarchardata using theWSTRdatatype.