Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Snowflake Cookbook

You're reading from  Snowflake Cookbook

Product type Book
Published in Feb 2021
Publisher Packt
ISBN-13 9781800560611
Pages 330 pages
Edition 1st Edition
Languages
Authors (2):
Hamid Mahmood Qureshi Hamid Mahmood Qureshi
Profile icon Hamid Mahmood Qureshi
Hammad Sharif Hammad Sharif
Profile icon Hammad Sharif
View More author details

Table of Contents (12) Chapters

Preface Chapter 1: Getting Started with Snowflake Chapter 2: Managing the Data Life Cycle Chapter 3: Loading and Extracting Data into and out of Snowflake Chapter 4: Building Data Pipelines in Snowflake Chapter 5: Data Protection and Security in Snowflake Chapter 6: Performance and Cost Optimization Chapter 7: Secure Data Sharing Chapter 8: Back to the Future with Time Travel Chapter 9: Advanced SQL Techniques Chapter 10: Extending Snowflake Capabilities Other Books You May Enjoy

Conventions used

There are a number of text conventions used throughout this book.

Code in text: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "We will start by simply selecting all rows from the QUERY_HISTORY view."

A block of code is set as follows:

CREATE TRANSIENT SCHEMA temporary_data 
DATA_RETENTION_TIME_IN_DAYS = 0
COMMENT = 'Schema containing temporary data used by ETL processes';

When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:

USE ROLE ACCOUNTADMIN;
USE SNOWFLAKE;
SELECT QUERY_ID, QUERY_TEXT, EXECUTION_TIME,USER_NAME 
FROM SNOWFLAKE.ACCOUNT_USAGE.query_history 
ORDER BY EXECUTION_TIME DESC;

Any command-line input or output is written as follows:

$ mkdir css
$ cd css

Bold: Indicates a new term, an important word, or words that you see on screen. For example, words in menus or dialog boxes appear in the text like this. Here is an example: "Select System info from the Administration panel."

Tips or important notes

Appear like this.

lock icon The rest of the chapter is locked
Next Chapter arrow right
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}