Create a Snowflake warehouse
Learn how to create a Snowflake warehouse.
- In the Snowflake application worksheet area, create a new SQL worksheet.
- In the SQL worksheet, run this command to create a Snowflake warehouse:
CREATE WAREHOUSE <warehouse_name> WAREHOUSE_TYPE = <warehouse_type> WAREHOUSE_SIZE = <warehouse_size>;
where:-
<warehouse_name>: Is the name of this Snowflake warehouse you're creating.
Tip: Take note of this value. You'll need it when you Create Reltio object type processing tasks in Snowflake. -
<warehouse_type>: Is STANDARD or SNOWPARK_OPTIMIZED.
-
<warehouse_size>: Is the size of the warehouse: XSMALL, SMALL, MEDIUM, LARGE, XLARGE, XXLARGE, XXXLARGE, X4LARGE, X5LARGE, or X6LARGE. For guidance on sizing, see topic Snowflake warehouse size guide.
-
- In the SQL worksheet, view the Successfully created notification message.