Overview
Thepg_namespace contains information about schema definitions. It mimics the pg_namespace PostgreSQL system catalog.
To learn more about Schema and how it is managed in Oxla, please refer to the schema documentation.
Columns
This table is designed for compatibility with tools that require PostgreSQL system tables, so it mostly has dummy data. Please note that not all columns in
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 |
Example
1. Create a Schema
In this example, we create “sales” and “hr” schemas using the query below:2. View Schema Definitions
We then use aSELECT statement on the pg_namespace catalog to show the schema definitions.