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
Can't ATTACH an SQL 2005 DataBase
Test mailbox migration from Exchange 2003 to Exchange 2007 server
Windows Upgrade Failed. How can I cancel installation?
Free or cheap alternative for Adobe Illustrator or CorelDraw
Questions about VMware
Batch WMIC PrinterStatus not updated
How do I add a lap time to a Mysql database in a flash game using PHP
bulk insert - skip a row
Need to disbale strong passwords
How can I get PageNumber in SQL Report body?