PostgreSQL 인코딩 확인
1. 클라이언트 인코딩 확인
1
show client_encoding;
2. 서버 인코딩 확인
1
show server_encoding;
3. Database 인코딩 확인
1) 특정 DB
1
select pg_encoding_to_char(encoding) from pg_database where datname = 'postgres';
2) 전체 DB
1
select *, pg_encoding_to_char(encoding) from pg_database;
[출처 및 참고]
This post is licensed under CC BY 4.0 by the author.