What are the steps to create a new schema in Snowsight?
Data >> Add Data >> Create Schema
Data >> Create Schema
Data >> Database >> Create Schema
Data Product >> Create Schema
To create a new schema in Snowsight, users must follow the hierarchical navigation of Snowflake’s object structure. The correct sequence is:
Data → Database → Create Schema
Steps:
Open theDatatab in the left navigation.
Select aDatabasewhere the schema will be created.
ChooseCreate → Schema.
Enter the schema name and (optionally) description.
ClickCreate.
Incorrect options:
“Add Data” is used for loading files, not creating schema objects.
“Data → Create Schema” is incomplete because Snowflake must knowwhich databasethe schema belongs to.
“Data Product” is unrelated to object creation.
Thus, Snowflake requires explicit database context before schema creation.
====================================================
Submit