Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Changing the NLS Character Set in Oracle

Procedure to Change the Character Set in oracle to support the local characters like unicode.

SQL> SHUTDOWN IMMEDIATE;
SQL> CONNECT SYS/password AS SYSDBA;
SQL> STARTUP MOUNT;
SQL> ALTER SYSTEM ENABLE RESTRICTED SESSION;
SQL> ALTER DATABASE OPEN;
SQL> ALTER DATABASE CHARACTER SET INTERNAL_USE AL32UTF8;
SQL> SHUTDOWN;
SQL> STARTUP;
SQL> QUIT;



This post first appeared on PHP Fresher, please read the originial post: here

Share the post

Changing the NLS Character Set in Oracle

×

Subscribe to Php Fresher

Get updates delivered right to your inbox!

Thank you for your subscription

×