A Schema is a logical grouping of relational objects such as Streams, Changelogs and Materialized Views. Schemas are grouped in a Database. A combination of databases and schemas enable users to organize their streams, Changelogs, and other Database objects in a hierarchical fashion in DeltaStream. Such hierarchies also are one of the bases for providing Role-based Access Control (RBAC) in DeltaStream the same way as other relational databases. CREATE SCHEMA enters a new Schema into the current Database. The Schema name must be distinct from the name of any existing Schema in the current Database.
Arguments
schema_name
Name of the Schema to create. For case-sensitive names, the name must be wrapped in double quotes, otherwise, the lowercased name will be used.
IN DATABASE database_name
Optionally, the Database the Schema should be created in. For case-sensitive names, the name must be wrapped in double quotes, otherwise, the lowercased name will be used.
Examples
Create a new Schema in default Database
The following creates a new Schema named newschema in the current Database demodb:
demodb.public/<no-store># CREATE SCHEMA newschema;+------------+----------------+------------+------------------------------------------+|Type|Name|Command|Summary|+============+================+============+==========================================+|schema|mydb.newschema|CREATE|schema"demodb.newschema"was|||||successfullycreated|+------------+----------------+------------+------------------------------------------+demodb.public/<no-store># LIST SCHEMAS;+------------+-------------+------------+-------------------------------+|Name|IsDefault|Owner|CreatedAt|+============+=============+============+===============================+|public|true|sysadmin|2023-08-0917:14:46+0000UTC|+------------+-------------+------------+-------------------------------+|newschema|false|sysadmin|2024-07-0221:20:23+0000UTC|+------------+-------------+------------+-------------------------------+
Create a new Schema in a specified Database
The following creates a new Schema named NewSchema in the specified Database otherdb:
demodb.public/<no-store># CREATE SCHEMA "NewSchema" IN DATABASE otherdb;+------------+-------------------+------------+------------------------------------------+|Type|Name|Command|Summary|+============+===================+============+==========================================+|schema|otherdb.NewSchema|CREATE|schema"otherdb.NewSchema"was|||||successfullycreated|+------------+-------------------+------------+------------------------------------------+demodb.public/<no-store># LIST SCHEMAS IN DATABASE otherdb;+------------+-------------+------------+-------------------------------+|Name|IsDefault|Owner|CreatedAt|+============+=============+============+===============================+|public|true|sysadmin|2024-07-0221:21:18+0000UTC|+------------+-------------+------------+-------------------------------+|NewSchema|false|sysadmin|2024-07-0221:21:25+0000UTC|+------------+-------------+------------+-------------------------------+