Gebruik voor Linux tail
en head
om het bestand bij te snijden en naar je script te pipen:
tail -n +3 file.csv | head -1 | psql -f my_script.sql my_database
Dan kopieert je script van STDIN:
copy my_table from STDIN;
Gebruik voor Linux tail
en head
om het bestand bij te snijden en naar je script te pipen:
tail -n +3 file.csv | head -1 | psql -f my_script.sql my_database
Dan kopieert je script van STDIN:
copy my_table from STDIN;