GET TOTAL CHUNKS SIZE
The get_total_chunks_size function returns the total size of all data chunks saved in the system in both compressed and uncompressed formats.
Syntax
SELECT get_total_chunks_size(<OUTPUT_UNITS>, [DATABASE_NAME], [SCHEMA_NAME, [TABLE_NAME]])
Parameters
The following table shows the SELECT get_total_chunks_size parameters:
| Parameter | State | Description | 
|---|---|---|
| 
 | Mandatory | Specifies the desired unit of measurement for the output size, with valid values of  | 
| 
 | Optional | Specifies the name of the database to analyze. If not specified, the function will analyze all databases in the cluster. | 
| 
 | Optional | Specifies the name of the schema to analyze. If not specified, the function will analyze all schemas in the specified database. | 
| 
 | Optional | Specifies the name of a specific table to analyze. If not specified, the function will analyze all tables in the specified schema. | 
Example
SELECT get_total_chunks_size('MB');
Output
compression-type         | value                          | size  |
-------------------------+--------------------------------+-------+
Compressed               | 0.00036144256591796875         |   MB  |
Uncompressed             | 0.00036144256591796875         |   MB  |
Permissions
Using the get_total_chunks_size command requires no special permissions.