pg_namespace
contains information about schema definitions. It mimics the pg_namespace PostgreSQL system catalog.
pg_namespace
are applicable to every type of relation.pg_namespace
catalog has the following key columns:
Column | Type | Description |
---|---|---|
oid | int | This column represents the Object ID, a unique identifier assigned to each namespace |
nspname | text | This column represents the name of the namespace |
nspowner | int | This column represents the owner of the namespace |
nspacl | text | unused |
SELECT
statement on the pg_namespace
catalog to show the schema definitions.