ST_MemSize — Restituisce la quantità di spazio (in byte) occupato dal raster.
integer ST_MemSize(raster  rast);
Restituisce la quantità di spazio (in byte) occupato dal raster.
È un bel complemento alle funzioni di PostgreSQL pg_column_size, pg_size_pretty, pg_relation_size, pg_total_relation_size.
                 
               | 
              |
| 
                 pg_relation_size which gives the byte size of a table may return byte size lower than ST_MemSize. This is because pg_relation_size does not add toasted table contribution and large geometries are stored in TOAST tables. pg_column_size might return lower because it returns the compressed size. pg_total_relation_size - includes, the table, the toasted tables, and the indexes.  | 
            
Disponibilità: 2.2.0
SELECT ST_MemSize(ST_AsRaster(ST_Buffer(ST_Point(1,5),10,1000),150, 150, '8BUI')) As rast_mem;
        rast_mem
        --------
        22568