Data Marketplace and Listings in Snowflake
📖 Scenario: You are working as a cloud data engineer. Your company wants to create a simple data marketplace listing using Snowflake. This marketplace will show available datasets with their names and descriptions.Think of it like a small online store, but instead of products, you list datasets that others can use.
🎯 Goal: Build a Snowflake table to hold marketplace listings with dataset names and descriptions. Then, create a view to show only active listings.
📋 What You'll Learn
Create a table named
marketplace_listings with columns dataset_name (string), description (string), and is_active (boolean).Insert exactly three listings with given dataset names, descriptions, and active status.
Create a variable
active_status set to true to filter active listings.Create a view named
active_marketplace_listings that selects only listings where is_active matches active_status.💡 Why This Matters
🌍 Real World
Data marketplaces help organizations share and discover datasets easily in cloud platforms like Snowflake.
💼 Career
Cloud data engineers and architects often build and manage data catalogs and marketplaces to enable data sharing and governance.
Progress0 / 4 steps