DotNetGnat
Programmer
Guys,
I have a table with a text field called ResumeText
Lets say simplified table looks like below...
EmpID | ResumeText
__________________
1 | blahblahblah
2 |sdklfjndsfds
what i am trying to do is to find only those records that have a non ascii characters in the ResumeText...
for example...
SELECT EmpID, ResumeText FROM mytable
WHERE PATINDEX('% %',ResumeText)>0
gives me all the records that contain a single space...
how to i write something similar for the filtering all the records that containing nonascii character...do i need to write multiple Patindexes to cover all the nonascii characters...
what is the best way to deal this situation...
-DNG
I have a table with a text field called ResumeText
Lets say simplified table looks like below...
EmpID | ResumeText
__________________
1 | blahblahblah
2 |sdklfjndsfds
what i am trying to do is to find only those records that have a non ascii characters in the ResumeText...
for example...
SELECT EmpID, ResumeText FROM mytable
WHERE PATINDEX('% %',ResumeText)>0
gives me all the records that contain a single space...
how to i write something similar for the filtering all the records that containing nonascii character...do i need to write multiple Patindexes to cover all the nonascii characters...
what is the best way to deal this situation...
-DNG