searching an unicode string (arabic text) in a coloumn

  • Hi All,

    i have a table where couple of coloumns consititues Arabic text . my requirement is to search for a string in arabic characters on those coloumns , i have been trying run the below query but search query turns out to be not fruitfull.

    SELECT * FROM Coloum1 WHERE (oldarabictext = N'%عملاء%') .

    Can some one help me out with a proper approach for this kind of scenario.

    Regards,

    Jaipal Vallabhaneni

  • Try this:

    SELECT * FROM Coloum1 WHERE CHARINDEX( N'?????' , oldarabictext ) > 1

  • thank you very much for the response .. i really helped me out...

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply