Start a Conversation

Unsolved

This post is more than 5 years old

2406

December 11th, 2013 20:00

How to find out table Size in HAWQ

How to find out table Size in HAWQ?

December 12th, 2013 02:00

Did you try

SELECT pg_database_size('dbname'); or SELECT pg_size_pretty(pg_database_size('dbname'));

2 Posts

January 16th, 2014 13:00

Here is the SQL:

select pg_size_pretty(pg_relation_size('

'));
No Events found!

Top