查看 postgresql 数据库编码,以及修改数据库编码

Posted 一菲聪天

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了查看 postgresql 数据库编码,以及修改数据库编码相关的知识,希望对你有一定的参考价值。

查看数据表编码:

\\encoding

 

修改数据库编码:

update pg_database set encoding = pg_char_to_encoding(\'UTF8\') where datname = \'your_database\';

 

 

参考:https://www.cnblogs.com/Tommy-Yu/p/6409494.html

以上是关于查看 postgresql 数据库编码,以及修改数据库编码的主要内容,如果未能解决你的问题,请参考以下文章

postgresql 53300错误

mysql查看编码格式以及修改编码格式

如何在linux下查看文件编码以及修改编码

linux下postgresql的连接数配置

[转帖]postgresql查看用户连接以及杀死连接的会话

PostgreSQL-9.6.3使用pg_settings表查看参数的生效条件