테이블을 select 하고자 했지만 다음과 같은 에러가 발생 하였다.
ERROR: character with byte sequence 0xea 0xb0 0x9c in encoding "UTF8" has no equivalent in encoding "LATIN1"
해결 방법은 다음과 같다.
1. DB 접속
psql -U <user name> -d <db name> -p <port number>
2. 클라이언트 인코딩 확인 및 세팅
show client_encoding; // LATIN1 로 인코딩이 세팅 되어있는 것을 확인
set client_encoding = 'utf8'; // 인코딩 셋
show client_encoding; // utf8 로 인코딩이 변경 된 것을 확인
'Dev' 카테고리의 다른 글
윈도우 공유 폴더 리눅스에서 마운트 하기 (0) | 2017.04.25 |
---|---|
[이클립스] Could not find symbol (0) | 2017.04.24 |
[postgresql] ERROR: invalid byte sequence for encoding "UTF8": 0xbc (0) | 2017.04.17 |
라즈비안 update, upgrade 안될 때... (0) | 2017.04.03 |
ssh 서버에서 특정 사용자만 허용 하기 (0) | 2017.03.29 |