postgresql导入中文报错怎么办
postgresql导入中文报错,因为没有修改环境变量,导致安装完数据库,数据库默认字符集变成LATIN1,如下所示。
postgres=# l List of databases Name | Owner | Encoding | Collate | Ctype | Access privileges -----------+----------+----------+---------+-------+----------------------- peimsmdb | peimsmer | LATIN1 | en_US | en_US | =Tc/peimsmer + | | | | | peimsmer=CTc/peimsmer postgres | postgres | LATIN1 | en_US | en_US | template0 | postgres | LATIN1 | en_US | en_US | =c/postgres + | | | | | postgres=CTc/postgres template1 | postgres | LATIN1 | en_US | en_US | =c/postgres + | | | | | postgres=CTc/postgres
所以如果安装数据库时修改了环境变量,就不会出现之后的问题。
修改环境变量
# vi /etc/profile export.UTF-8 export LC_ALL=en_US.UTF-8 export LC_CTYPE=en_US.UTF-8 # source /etc/profile
更多学习内容,请点击Python学习网。
来源:PY学习网:原文地址:https://www.py.cn/article.html