Tried like below, but it imports terribly slow, with speed 3 rows/sec
WbImport -file=c:/temp/_Cco_.txt
-table=myschema.table1
-filecolumns=warehouse_id,bin_id,cluster_name
---deleteTarget
-batchSize=10000
-commitBatch
WbInsert can use the COPY API of the Postgres JDBC driver.
To use it, use
The options
-batchSize
and-commitBatch
are ignored in that case, so you should remove them.SQL Workbench/J will then essentially use the equivalent of a
COPY ... FROM STDIN
. That should be massively faster than regular INSERT statements.This requires that the input file is formatted according to the requirements of the COPY command.