Unicode or Not?
Forum » Forum / Hints, Tips & Gotchas » Unicode or Not?
Started by: PrajPraj
On: 1273729443|%e %b %Y, %H:%M %Z|agohover
Number of posts: 1
rss icon RSS: New posts
Unicode or Not?
PrajPraj 1273729443|%e %b %Y, %H:%M %Z|agohover

The following site explains exactly how to tell if your database is unicode or not (on Oracle). You can still use the generic UNICODE_ENABLED flag (0 = non-unicode, 1 = unicode) in the PSSTATUS table tell which option is being used:

select 
    case 
        when UNICODE_ENABLED = 0 
        then 'Non-Unicode' 
        else 'Unicode' 
    end as UNICODE_ENABLED
from PSSTATUS;
Reply  |  Options
Unfold Unicode or Not? by PrajPraj, 1273729443|%e %b %Y, %H:%M %Z|agohover
New Post
Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License