crt sqlplus 中文乱码解决方案:

1.确定数据库字符集
SQL> select userenv('language') from dual;

USERENV('LANGUAGE')
----------------------------------------------------
AMERICAN_AMERICA.ZHS16GBK

2.确定环境变量字符集:
export NLS_LANG=AMERICAN_AMERICA.ZHS16GBK

3.根据前面数据库字符集 确定crt字符集
session option --> appearance -->character encoding --->(GB2132或GB18030)

4.用sqlplus向数据库插入"中文"
原文地址:https://www.cnblogs.com/polestar/p/10315106.html