I have a order table which has 50 columns in my greenplum postgres database. Which has billions of data in the table but when I run \dt+ order I am getting just 27MB size and I have distributed on order_id column. please help me to find out where the compression is being applied.
\dt+ order the above command returns 27MB
I want know where the compression is applied
Given a table named
edw.oak, When you run\dt+ oakfrom psql on Greenplum 6.x, the following query is runSo the "Size" column is determined by
pg_catalog.pg_size_pretty(pg_catalog.pg_table_size(c.oid)) as ""Size""What type of storage is your table using? Heap? AO?
Can you provide the full DDL of the table?
What is the output of this command: