sqlplus插入中文字符集问题和ORA-01756 quoted string not properly terminated

时间:2024-04-07 07:40:04

实验环境:ORACLE11G、linux5.6

1.进入sqlplus 创建对应的表,插入相关值(包含中文)

sqlplus插入中文字符集问题和ORA-01756 quoted string not properly terminated

 

2.插入完后,查询该表发现全是乱码

sqlplus插入中文字符集问题和ORA-01756 quoted string not properly terminated

 

3.查询出当前数据库的字符集信息

sqlplus插入中文字符集问题和ORA-01756 quoted string not properly terminated

 

4.修改当前用户环境变量,添加NLS_LANG oracle客服端字符环境变量,将该变量和数据库设置成一致。

sqlplus插入中文字符集问题和ORA-01756 quoted string not properly terminated

 

5.**当前环境变量,使其生效。

sqlplus插入中文字符集问题和ORA-01756 quoted string not properly terminated

 

6.在次查询发现已经有变化了,但还是乱码,得将数据删除后重新插入。

sqlplus插入中文字符集问题和ORA-01756 quoted string not properly terminated

 

7.重新插入后,发现有错误ORA-01756 ,分析得出该错误是由于登陆工具的字符集编码和服务器上的编码不一致导致。

sqlplus插入中文字符集问题和ORA-01756 quoted string not properly terminated

 

8.只插入了两条

sqlplus插入中文字符集问题和ORA-01756 quoted string not properly terminated

 

9.修改登录服务器的工具的编码格式

sqlplus插入中文字符集问题和ORA-01756 quoted string not properly terminated

 

9.在次删除数据后,插入数据。发现没有问题了。

sqlplus插入中文字符集问题和ORA-01756 quoted string not properly terminated

 

该问题相对简单,但对于不了解的人来说,还是挺麻烦的。如遇到该问题可以做参考。只要改成对应字符集就可。