I have a table with a couple thousand rows. The description and summary fields are NTEXT, and sometimes have non-ASCII chars in them. How can I locate all of the rows with non ASCII characters?
I have sometimes been using this "cast" statement to find "strange" chars
select * from <Table> where <Field> != cast(<Field> as varchar(1000))
2.1m questions
2.1m answers
60 comments
57.0k users