If you want to skip part of the preprocessing, you can define the column to be skipped as CHAR(1) , and then use the TRUNCATECOLUMNS parameter for the COPY :
CREATE TABLE t1a ( c1, c2 CHAR(1), c3 ); COPY t1a FROM t1 TRUNCATECOLUMNS
TRUNCATECOLUMNS ignores all data that is longer than defined in the table schema during import, so all data in this column will be truncated by 1 character.
It is recommended that you only crack the source preprocessing file, but sometimes you need to crack everything.
Tomasz Tybulewicz
source share