Within this Tasty Bytes Introduction Quickstart you will first be learning about the fictitious food truck brand, Tasty Bytes, created by Snowflake.
After learning about the Tasty Bytes Organization, we will complete the process of setting up the Tasty Bytes Foundational Data Model, Workload Specific Roles + Warehouses and all necessary Role Based Access Control (RBAC).
Upon finishing this Quickstart, you will have deployed the foundation required to run the Quickstarts seen in our Powered by Tasty Bytes - Quickstarts section.
For this Quickstart, you will use the Snowflake web interface known as Snowsight. If this is your first time leveraging Snowsight, we highly recommend taking a look at our Snowsight Documentation for a high-level walkthrough.
tb_101 setup is now complete
. With the Tasty Bytes Setup successful, we can now explore the Database, Roles and Warehouses we created.
This query will return the Database we created via SHOW DATABASES using our SYSADMIN role.
USE ROLE sysadmin;
SHOW DATABASES LIKE 'tb_101';
This query will return the Schemas within the Database we created via SHOW SCHEMAS.
SHOW SCHEMAS IN DATABASE tb_101;
This query will return the Tables within the raw_pos
schema via SHOW TABLES
SHOW TABLES IN SCHEMA tb_101.raw_pos;
This query will return the Roles we created via SHOW ROLES.
SHOW ROLES LIKE 'tb%';
This query will return the Warehouses we created via SHOW WAREHOUSES.
SHOW WAREHOUSES LIKE 'tb%';
These next three queries will:
tb_data_engineer
role via USE ROLEtb_de_wh
Warehouse via USE WAREHOUSEraw_pos.menu
table to find which Menu Items are sold at our Plant Palace branded food trucks.USE ROLE tb_data_engineer;
USE WAREHOUSE tb_de_wh;
SELECT
m.menu_type_id,
m.menu_type,
m.truck_brand_name,
m.menu_item_name
FROM tb_101.raw_pos.menu m
WHERE m.truck_brand_name = 'Plant Palace';
Amazing! Within a few minutes we now have a Tasty Bytes demo environment complete with data, roles and warehouses set up in our Snowflake account. Let's now take a look at all of the other Tasty Bytes Quickstarts available to us to leverage.
Congratulations! You have now completed the Tasty Bytes Foundational Setup!
The Table of Contents below will outline all of the available Tasty Bytes Quickstarts that leverage the foundation you just built.