Forum OpenACS Q&A: Re: Running the psql COPY command from db_dml

Collapse
Posted by Eduardo Pérez on
I think you shouldn't be using COPY at all, because:
- It's not SQL standard.
- Can break if you add or remove columns.

I'd rather use INSERT instead.
Anyway, why do you need to use COPY instead of INSERT?