Postgresql: Two concurrent COPY FROM

importpostgresql

I'm importing several gigantic csv files into a table – so I'm wondering what would happen if I ran COPY FROM jobs concurrently?

Best Answer

It just works, like it should. It doesn't lock the table, so start testing.