Microsoft
Software
Hardware
Network
Question : How to do search on special characters in MS SQL?
Hi, Experts,
How I can make following SELECT statement return result set:
(I'm trying to find some special characters like a carriage return(CHAR(13)) in my text field)
SELECT Comment
FROM Forum
WHERE Contains(Comment, CHAR(13))
It seems Full-Text index totally ignores them. Is it possible to make them researchable? and how?
Thanks,
-Rick
Answer : How to do search on special characters in MS SQL?
SELECT Comment
FROM Forum
WHERE charindex(CHAR(13), Comment) > 0
Random Solutions
Extraneous "Shift Enter" items in my data....
Software to copy data, shares & permissions from one drive to another
XP Hangs At Splash Screen
Required Radio Buttons don't alert in order
Using variables to create objects
how to schedule threads for time
Illustrator CS - Error saving .ai file
Get the string from a specific position
How to pass multiple openargs
parse xml with python