Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

problem in persian character

SarahMay 9 2018 — edited May 12 2018

I’ve had a problem in querying Persian character (ی"") from oracle database in my client since I reinstall my windows and pl/sql developer.

The character set in my client’s registry is AMERICAN_AMERICA.AR8MSWIN1256.

When I use this query

select * from credit where CTYPE = 'تسهیلات'

it doesn’t match with any record.

But when I change the query to

select * from credit where CTYPE = N'تسهیلات'

It returns matched records.

How could I fix this problem without using “N”, because I should change all my old queries.

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jun 9 2018
Added on May 9 2018
8 comments
1,031 views