Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
daemon-blockint-tech avatar

Data Warehouse Engineer

  • 29 installs
  • 7 repo stars
  • Updated May 20, 2026
  • daemon-blockint-tech/agentic-enteprises-skill

Designs data warehouses: star/snowflake schemas, dimensional modeling, SQL optimization, ETL/ELT patterns, and partitioning strategies.

About

An agent skill for designing and implementing data warehouses, covering star/snowflake schemas, dimensional modeling, SQL optimization, ETL/ELT patterns, and warehouse-specific features for Snowflake, BigQuery, and Redshift. A developer uses it when designing schemas, optimizing queries, or building ETL pipelines.

  • Dimensional modeling and partitioning strategies
  • Warehouse-specific features for Snowflake, BigQuery, and Redshift

Data Warehouse Engineer by the numbers

  • 29 all-time installs (skills.sh)
  • Ranked #513 of 911 Databases skills by installs in the Skillselion catalog
  • Data as of Jul 29, 2026 (Skillselion catalog sync)
npx skills add https://github.com/daemon-blockint-tech/agentic-enteprises-skill --skill data-warehouse-engineer

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs29
repo stars7
Last updatedMay 20, 2026
Repositorydaemon-blockint-tech/agentic-enteprises-skill

What it does

Designs data warehouses: star/snowflake schemas, dimensional modeling, SQL optimization, ETL/ELT patterns, and partitioning strategies.

Files

SKILL.mdMarkdownGitHub ↗

Data Warehouse Engineer

Overview

Design and implement data warehouses. This skill covers star/snowflake schemas, dimensional modeling, SQL optimization, ETL/ELT patterns, partitioning strategies, and warehouse-specific features (Snowflake, BigQuery, Redshift).

Features

  • Dimensional modeling: star schema, snowflake schema, fact/dimension table design
  • SQL optimization: query tuning, indexing, materialized views, partition pruning
  • ETL/ELT patterns: incremental loads, CDC, data quality checks, error handling
  • Partitioning strategies: range, list, hash, and composite partitioning
  • Warehouse-specific features: Snowflake clustering, BigQuery partitioning, Redshift sort keys

Usage

1. Identify the user's warehouse need (schema design, SQL optimization, ETL, or partitioning) 2. Follow the corresponding workflow below 3. Produce structured outputs: ER diagrams, optimized SQL queries, ETL pipeline designs, or partitioning plans

Examples

  • User: "Design a star schema for sales"

Agent: Runs Dimensional Modeling workflow, identifies fact table (sales), dimension tables (date, product, customer, region), creates ER diagram

  • User: "Optimize a slow query"

Agent: Runs SQL Optimization workflow, analyzes execution plan, recommends indexes, rewrites query with CTEs

  • User: "Set up incremental loads"

Agent: Runs ETL/ELT workflow, designs CDC pattern, implements watermark-based extraction, adds data quality checks

When to Use

  • Diagnosing slow warehouse SQL and improving partition, cluster, or join plans
  • Designing star/snowflake schemas, SCDs, and fact/dimension tables
  • Building idempotent, incremental, or CDC ETL with observability and quality checks
  • Comparing Snowflake, BigQuery, Databricks, or Redshift syntax and trade-offs

When NOT to Use

  • Enterprise-wide data mesh, governance pillars, or compliance program design → use data-architect
  • BI dashboard layout, chart selection, or stakeholder-facing metrics → use bi-analyst
  • dbt layers, mart tests, exposures, and analytics engineering workflows → use analytics-data-engineer
  • ML feature stores, model serving, or experiment analysis → use data-scientist
  • On-call leadership for the full data platform org → use data-system-ops-lead
  • Application runtime profiling, API load tests, OLTP latency SLOs → use performance-engineer

Core Workflows

1. Query Performance Diagnostics

Step-by-step checklist (follow exactly):

1. Identify the slow query and capture its execution plan 2. Check for full table scans; add partitioning or clustering if present 3. Verify join order: smallest/ most selective table first when possible 4. Look for selective predicates pushed to the partition/clustering key 5. Check for redundant aggregations or exploding joins (many-to-many without bridge) 6. Compare estimated vs actual rows; cardinality misestimates indicate stale stats 7. Consider materialized views or pre-aggregated summary tables for repeated patterns 8. Document the before/after execution time and cost

2. Data Model Design

Decision tree:

  • Need fast aggregations and simple joins? → Star schema
  • Need normalized dimensions to reduce redundancy? → Snowflake schema
  • Tracking historical changes in dimensions? → Slowly Changing Dimension (SCD) type 2
  • Event-based data with high volume? → Fact table with partitioning on event date
  • Need real-time-ish analytics? → Streaming ingestion + micro-batch fact tables

3. ETL Pipeline Design

Essential properties every pipeline must satisfy:

PropertyPattern
IdempotencyMERGE / INSERT OVERWRITE with deterministic keys
IncrementalityWHERE updated_at > (SELECT MAX(updated_at) FROM target)
AtomicityWrap multi-step loads in a transaction or use staging → swap pattern
ObservabilityRow counts, null rates, freshness checks logged per run
Error handlingDead-letter queue for bad records; fail loudly on schema drift

4. Platform Selection Quick Reference

NeedBest Fit
Semi-structured JSON, auto-scalingSnowflake
Tight GCP integration, nested/repeated fieldsBigQuery
ML + Spark + SQL in one lakehouseDatabricks
AWS-native, predictable cost at scaleRedshift

Related skills

Databasesdatabasesetl

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.