PostgreSQL
 sql >> Base de données >  >> RDS >> PostgreSQL

Comment importer un fichier compressé dans la table Postgres

Depuis Postgres :

COPY table_name FROM PROGRAM 'unzip -p input.csv.zip' DELIMITER ',';

À partir de la page de manuel pour unzip -p :

-p     extract files to pipe (stdout).  Nothing but the file data is sent to stdout, and the files are always extracted  in  binary
       format, just as they are stored (no conversions).