PL/SQL报错:NLS_LANG is not defined on the client.

win7 运行 PLSQLDevloper时提示NLS_LANG is not defined on the client,Character set conversion may cause unexpected results

因为没有设置环境变量NLS_LANG,结果就是会导致中文乱码

简单的解决方法:

1:设置系统环境变量NLS_LANG=SIMPLIFIED CHINESE_CHINA.ZHS16GBK。

2:做一个批处理文件启动plsqlDev

set NLS_LANG=SIMPLIFIED CHINESE_CHINA.ZHS16GBK

start D:\PLSQL-Developer\plsqldev.exe

记录自网络

你可能感兴趣的:(PL/SQL报错:NLS_LANG is not defined on the client.)