PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

problema con la codifica durante l'importazione di json in Postgres

Usa l'opzione csv per COPY , con DELIMITER e'\x01' QUOTE e'\x02' . Non sono sicuro che funzioni per tutti i possibili JSON validi, ma non ho mai avuto problemi.

$ psql -X testdb -c 'create table t(d jsonb)'
CREATE TABLE
$ cat foo.json
{"a":"Têst"}
$ cat foo.json | psql -X testdb -c "COPY t from stdin csv delimiter e'\x01' quote e'\x02'" 
COPY 1
$ psql -X testdb -c 'select * from t';                                                    
       d       
---------------
 {"a": "Têst"}
(1 row)