Hello
I found your repository through a Postgres mailing list thread. Here is my problem. I want to have a catch-all error handler for bulk operation. But Postgres's COPY command fails on errors and the ignore error option only ignores some limited errors.
These are my requirements:
- Inserting a lot of fake data
- Updating nested model calculations for large hierarchical data sets
- Inserting a lot of i18n translations
They are not related to ETL, and all of them should be done via the code (Node.js in this case).
So, two questions:
- Does
pg_bulkload support catch-all errors?
- Can it be used and managed via code (Node)?
Hello
I found your repository through a Postgres mailing list thread. Here is my problem. I want to have a catch-all error handler for bulk operation. But Postgres's
COPYcommand fails on errors and theignore erroroption only ignores some limited errors.These are my requirements:
They are not related to ETL, and all of them should be done via the code (Node.js in this case).
So, two questions:
pg_bulkloadsupport catch-all errors?