CREATE ORGANIZATION

Syntax

CREATE ORGANIZATION organization_name;

Description

An organization is the highest level logical space in DeltaStream. Outside users can be invited to join the organization by the organization's administrator and the administrator can manage these users by assigning or rescinding roles. Users in organization can then use the platform according to the permissions in their roles – such as adding Stores, creating Databases and Schemas, and writing Queries.

Arguments

organization_name

The name of the organization to create.

Example

Create an Organization

In the below example, a new organization is created with the name myorg.

<no-organization># CREATE ORGANIZATION myorg;
+--------------+-------+----------+---------------------------------------+
|  Type        |  Name |  Command |  Summary                              |
+==============+=======+==========+=======================================+
| organization | myorg | CREATE   | organization "myorg" was successfully |
|              |       |          | created                               |
+--------------+-------+----------+---------------------------------------+
<no-db>/<no-store># LIST ORGANIZATIONS;
+--------------------------------------+--------+-------------+-------------+--------------+--------------------+-------------------------------+
|  ID                                  |  Name  |  Is Current |  Is Default |  Description |  Profile Image Uri |  Created At                   |
+======================================+========+=============+=============+==============+====================+===============================+
| caab10ef-5c55-4e6b-906b-29a9dae9b74d | myorg  | true        | true        | <null>       | <null>             | 2024-07-02 21:16:22 +0000 UTC |
+--------------------------------------+--------+-------------+-------------+--------------+--------------------+-------------------------------+

Last updated