Stairway to Snowflake Level 1 - An Introduction to Snowflake
Get an overview of Snowflake in this level, one of the fastest growing data warehouse platforms in the world.
Get an overview of Snowflake in this level, one of the fastest growing data warehouse platforms in the world.
In this next level of the Stairway to Snowflake, we look at the considerations for creating an account and how to set one up.
Learn how you can configure a Snowflake account in your cloud database and load data.
This next level of the Stairway to Snowflake looks at the Snowsight UI and what you can accomplish with it.
Snowflake has its own CLI tool: SnowSQL. In this level of the Stairway Series learn how to work with this dialect in Snowflake and Visual Studio Code.
In this next level of the Stairway to Snowflake, learn about creating and dropping databases, with some options for cloning from different sources.
In this next level of the Stairway to Snowflake we examine the wide variety of table types that exist in the platform.
Today Steve talks about the concept of what a failure is when deploying changes.
Real-time data ingestion has become essential for modern analytics and operational intelligence. Organizations across industries need to process data streams from IoT sensors, financial transactions, and application events with minimal latency. Snowflake offers two robust approaches to meet these real-time data needs: Snowpipe for near-real-time file-based streaming and Direct Streaming via Snowpark API for true real-time data integration.
Tony describes in more detail the SIMPLE recovery model, and the way it works, its advantages and disadvantages.
By Kevin3NF
Don’t Let Trouble Sneak Up on You Most SQL Servers run quietly. Until...
By Steve Jones
I had a conversation with a customer asking this question: how can I tell...
By Chris Yates
There was a time when the Chief Data Officer lived in the shadows of...
Comments posted to this topic are about the item Create an HTML Report on...
Hi I have a SP that occasionally get this error: Cannot resolve the collation...
Hi everyone I am getting an error when I create the index but I...
I have two calls to the GENERATE_SERIES TVF in this code:
SELECT TOP 10 gs.value FROM GENERATE_SERIES(1, 10) AS gs ORDER BY NEWID () OPTION (RECOMPILE); go DECLARE @a int = 10; SELECT TOP (@a) gs.value FROM GENERATE_SERIES(1, @a) AS gs ORDER BY NEWID () OPTION (RECOMPILE);In the actual query plans, what is the estimated number of rows for each batch in SQL Server 2022? See possible answers