在 Oracle 中将字符集更改为阿拉伯语
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/5729524/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Changing Character set to Arabic In Oracle
提问by Ahsan Shiekh
Kindly guide me how to change the character set to Arabic in Oracle . please mention the steps that i need to follow, regrading it.
请指导我如何在 Oracle 中将字符集更改为阿拉伯语。请提及我需要遵循的步骤,重新分级。
回答by Abdulrhman
go to start>run type regedit and then look for by pressing h key in keyboard hkey local machine and software and oracl dev home and look for nls_lang change it to AMERICAN_AMERICA.AR8MSWIN1256
转到开始>运行类型regedit然后通过在键盘hkey本地机器和软件和oracl dev home中按h键查找并查找nls_lang将其更改为AMERICAN_AMERICA.AR8MSWIN1256
回答by Chandu
Check this link for step by step instructions: http://download.oracle.com/docs/cd/B10501_01/server.920/a96529/ch10.htm#1009904
检查此链接以获取分步说明:http: //download.oracle.com/docs/cd/B10501_01/server.920/a96529/ch10.htm#1009904
STARTUP MOUNT;
ALTER SYSTEM ENABLE RESTRICTED SESSION;
ALTER SYSTEM SET JOB_QUEUE_PROCESSES=0;
ALTER SYSTEM SET AQ_TM_PROCESSES=0;
ALTER DATABASE OPEN;
ALTER DATABASE CHARACTER SET AR8ISO8859P6;
SHUTDOWN IMMEDIATE; -- or SHUTDOWN NORMAL;
STARTUP;