How can I find Unicode/non-ASCII characters in an NTEXT field in a SQL Server 2005 table?

I have sometimes been using this “cast” statement to find “strange” chars

select 
    *
from 
    <Table>
where 
    <Field> != cast(<Field> as varchar(1000))

Leave a Comment