1LOAD DBF
2    -- FROM http://www.insee.fr/fr/methodes/nomenclatures/cog/telechargement/2013/dbf/historiq2013.zip
3    FROM https://www.insee.fr/fr/statistiques/fichier/2114819/france2016-dbf.zip
4    with encoding cp850
5    INTO postgresql:///pgloader
6   TARGET TABLE dbf.france2016
7    WITH truncate, create table
8  BEFORE LOAD DO $$ create schema if not exists dbf; $$;
9