Felipe Schnack <felipes@ritterdosreis.br> writes:
> Why copy is faster? You can do everything in a transaction turning off
> autocommit...
COPY will still be a little faster because each INSERT statement has
to go through the SQL parser and query planner. The parsing that COPY
does is a lot simpler.
-Doug