Hi all, I know in sql we can compress the text field like the following,
CREATE TABLE TableName (FieldName CHARACTER(255) WITH COMPRESSION) ;
I want to know how to achieve the text compression in psql.
Hi all, I know in sql we can compress the text field like the following,
CREATE TABLE TableName (FieldName CHARACTER(255) WITH COMPRESSION) ;
I want to know how to achieve the text compression in psql.
Compression is enabled by default for all string types, you don't have to tell the database to do it. Check the manual about TOAST