Re: COPY: row is too big

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: doganmeh <mehmet(at)edgle(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: COPY: row is too big
Date: 2017-05-26 14:21:02
Message-ID: 29930.1495808462@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

doganmeh <mehmet(at)edgle(dot)com> writes:
> I tried varchar(12) also, nothing changed. My questions is 1) I have
> 672x12=8,064 characters in the first row (which are actually the headers),
> why would it complain that it is 8760.

No, you have 672*13, because each varchar value will require a length
word (which is only 1 byte for short values like these). Adding the
24-byte row header comes to 8760.

> 2) Is there anything I can do to work
> around this situation?

Maybe you could combine the strings into an array? A large array would
be subject to compression and/or out-of-line storage, but 12-byte fields
are too small to benefit from either.

regards, tom lane

In response to

Browse pgsql-general by date

  From Date Subject
Next Message David Wall 2017-05-26 16:11:01 Re: pg_dump 8.3.3 ERROR: invalid page header in block 2264419 of relation "pg_largeobject"
Previous Message Andreas Kretschmer 2017-05-26 13:36:49 Re: COPY: row is too big