CREATE SCHEMA#
Creates a schema in the virtual database.
Syntax#
CREATE SCHEMA schema_name
[;]
Arguments#
schema_name
Is the name by which the schema is identified within the database.
Permissions#
Requires CREATE SCHEMA permission on the virtual database.
Examples#
Create schema Stage in the current virtual database.
CREATE SCHEMA Stage;