test_data.csv id,name,created_on 1,first,2022-07-14 01:12:00 copyコマンドでinsert (copyコマンドに関してはPostgresのデータをファイルへ書き出す (psqlでCopyコマンド)も) docker exec -i postgres psql -U postgres test_db -c "\copy test_table from STDIN with DELIMITER ',' CSV hea...
Enterprise Postgresが提供する高速データロード機能(pgx_loaderコマンド)を使った例 $ pgx_loader load -j 3 -c "copy warehouse from '/tmp/warehouse.csv' delimiter ',' csv" -d postgres -h sv3 -p 27701; <enter> $ pgx_loader load -j 3 -c "copy district ...