NAMESPACES
Lists details about the namespaces in an Eon Mode database.
Lists details about the namespaces in an Eon Mode database.
| Column Name | Data Type | Description |
|---|---|---|
| NAMESPACE_OID | INTEGER | Catalog-assigned numeric value that uniquely identifies the namesapce. |
| NAMESPACE_NAME | VARCHAR | Name of the namespace |
| IS_DEFAULT | BOOLEAN | Whether the namespace is the default namespace of the database. |
| DEFAULT_SHARD_COUNT | VARCHAR | Shard count of the namespace. |
Example
List the details of all namespaces in your database:
=> SELECT * FROM NAMESPACES;
namespace_oid | namespace_name | is_default | default_shard_count
-------------------+-------------------+------------+---------------------
45035996273704988 | default_namespace | t | 9
32582959204859183 | analytics | f | 12
(2 rows)