Postgres max field length issue

44 Views Asked by At

We are trying to load some data in postgres The problem is data is huge that its exceeding character varying(10485760) limit.

Is there any possible way to increase this limit?

Thanks,

1

There are 1 best solutions below

0
On

Use TEXT data type. It will allow you to enter long data. Use ALTER ... command for column data type.