Oracle 11g XE greek character set not displaying

孤人 提交于 2020-01-09 05:40:18

问题


I used an Oracle 11g EE to create my database and access it through PHP using PDO, and all was working good. But i had to change to 11g XE because i wanted to use it freely inside my company. Now, greek characters won't display on PHP (i get �������� instead). I tried to change the character set with :

shutdown immediate;
startup mount;
alter system enable restricted session;
alter system set job_queue_processes=0;
alter database open;
alter database character set internal_use EL8MSWIN1253;
shutdown immediate;
startup;

But i ended up corrupting the CLOBs.

Now, after reverting to the last known good backup i am trying to use CSSCAN but i cannot find it inside my bin folder or anywhere to download.

Any thoughts on this??

I really need to make it work..

来源:https://stackoverflow.com/questions/15224015/oracle-11g-xe-greek-character-set-not-displaying

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!