> > You obviously can just copy the data into postgres over multiple > connections if you need to speed COPY up. But that requires splitting up > the data on the clientside. >
You obviously are referring to multiple connections running COPY on different tables, right? Like what pg_restore does with -j option. Doesn't copy take an exclusive lock on the table which makes it incompatible with parallelization.