Re: [GENERAL] Bulk Data Entry

2007-03-21 Thread Richard Huxton
Richard Huxton wrote: Check the psql man-page for "ON_ERROR_STOP": psql ... -v 'ON_ERROR_STOP=' ... Sorry - typo psql ... -v 'ON_ERROR_STOP=1' ... -- Richard Huxton Archonet Ltd ---(end of broadcast)--- TIP 3: Have you checked our extensiv

Re: [GENERAL] Bulk Data Entry

2007-03-21 Thread Richard Huxton
Naz Gassiep wrote: psql blogbogdev -f ./blogbog_tables.sql > ./blogbog_tables_inserted.log psql blogbogdev -f ./blogbog_data.sql > ./blogbog_data_inserted.log psql blogbogdev -f ./blogbog_constraints.sql > ./blogbog_constraints_applied.log I really would prefer psql to halt on error instead of

[GENERAL] Bulk Data Entry

2007-03-21 Thread Naz Gassiep
This problem is to do with bulk loading of data. I use the following scripts to take data from a live DB and put it into a testing DB with the current version of the schema: # SCRIPT 1 pg_dump blogbog -a -D -f blogbog_data.sql dropdb blogbogtemp createdb blogbogtemp psql blogbogtemp -f /www/htd