# 54.26. pg\_shmem\_allocations

The `pg_shmem_allocations` view shows allocations made from the server's main shared memory segment. This includes both memory allocated by PostgreSQL itself and memory allocated by extensions using the mechanisms detailed in [Section 38.10.10](https://www.postgresql.org/docs/current/xfunc-c.html#XFUNC-SHARED-ADDIN).

Note that this view does not include memory allocated using the dynamic shared memory infrastructure.

#### **Table 54.26. `pg_shmem_allocations` Columns**

| <p>Column Type</p><p>Description</p>                                                                                                                                                                                                                                                                                                                           |
| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| <p><code>name</code> <code>text</code></p><p>The name of the shared memory allocation. NULL for unused memory and <code>\<anonymous></code> for anonymous allocations.</p>                                                                                                                                                                                     |
| <p><code>off</code> <code>int8</code></p><p>The offset at which the allocation starts. NULL for anonymous allocations, since details related to them are not known.</p>                                                                                                                                                                                        |
| <p><code>size</code> <code>int8</code></p><p>Size of the allocation</p>                                                                                                                                                                                                                                                                                        |
| <p><code>allocated\_size</code> <code>int8</code></p><p>Size of the allocation including padding. For anonymous allocations, no information about padding is available, so the <code>size</code> and <code>allocated\_size</code> columns will always be equal. Padding is not meaningful for free memory, so the columns will be equal in that case also.</p> |

Anonymous allocations are allocations that have been made with `ShmemAlloc()` directly, rather than via `ShmemInitStruct()` or `ShmemInitHash()`.

By default, the `pg_shmem_allocations` view can be read only by superusers or roles with privileges of the `pg_read_all_stats` role.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.postgresql.tw/15/internals/54.-system-views/pg_shmem_allocations.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
