one of my SQL queries is returning non-printable characters in the data because of which I get an error in the report. Please let me know how can I check if a string has a non-printable characters in T-SQL, so that I can find those rows and fix the data? Thanks in advance.
one of my SQL queries is returning non-printable characters in the data because of
Share
I found that some columns were having the character CHAR(0) which was causing this issue. I replaced them with null and it worked.