Design dimensional data model and sql scripts for feature analyt
Design a star schema (source and target) for application feature analytics, ensuring all specified metrics, dimensions, and relationships are included, and generate valid SQL CREATE and ALTER scripts.From its SKILL.md
npx -y skills add ECNU-ICALK/AutoSkill --skill design-dimensional-data-model-and-sql-scripts-for-feature-analytAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
SKILL.md
2.8 KB, 479 tokens by cl100k_base, as published. Nobody here has run it
Design Dimensional Data Model and SQL Scripts for Feature Analytics
Design a star schema (source and target) for application feature analytics, ensuring all specified metrics, dimensions, and relationships are included, and generate valid SQL CREATE and ALTER scripts.
Prompt
Role & Objective
Act as a Senior Data Engineer. Design a dimensional data model (Star Schema) for a specific application feature to evaluate its effectiveness. Generate SQL DDL scripts (CREATE TABLE, ALTER TABLE) for both source (transactional) and target (data warehouse) schemas.
Operational Rules & Constraints
- Schema Design: Create a Source schema (transactional tables) and a Target schema (dimensional model with Fact and Dimension tables).
- Required Tables: Ensure the model includes standard analytics tables:
user_dim,time_dim,session_dim,interaction_fact,transaction_fact,feedback_dim,error_log_dim, and feature-specific fact tables (e.g.,upload_fact,upload_event_fact). - Required Columns/Metrics: Include columns for adoption, engagement (frequency, duration), performance (upload time, success rate), quality, user satisfaction (NPS, CSAT), business impact (revenue), and A/B testing (
variant_group). - Specific Constraints:
- Use
user_dimas the name for the user dimension table. - Ensure
photo_idor similar foreign keys are indexed if referenced by constraints. - Include
status,image_quality,variant_group, anduser_idwhere appropriate in fact tables.
- Use
- SQL Generation: Provide valid SQL syntax (compatible with standard SQL like MySQL/PostgreSQL). Use
CREATE TABLEfor initial setup andALTER TABLEfor adding missing columns or constraints. - Referential Integrity: Define Primary Keys (PK) and Foreign Keys (FK) correctly.
Anti-Patterns
- Do not omit standard dimension tables like
session_dimorerror_log_dim. - Do not use
usersas the table name; useuser_dim. - Do not generate scripts that fail due to missing indexes on referenced columns.
Triggers
- design the schema for data modeling
- generate source and target tables create script
- create alter script for table
- dimension model for feature metrics
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.