Integration via Conformed Dimensions
Conformed Dimensions
Ví dụ: Conformed Dimension – Customer
dim_customer_sales
-------------
| customer_id | name | segment | ... |
|-------------|-------------|---------|-----|
| 1001 | John Doe | VIP | ... |
| 1002 | Mary Smith | Regular | ... |dim_customer_support
-------------
| customer_id | full_name | cust_type | ... |
|-------------|--------------|-----------|-----|
| 1001 | Johnathan D. | Premium | ... |
| 1002 | M. Smith | Normal | ... |dim_customer_conformed
-------------
| customer_id | customer_name | customer_segment | ... |
|-------------|----------------|------------------|-----|
| 1001 | John Doe | VIP | ... |
| 1002 | Mary Smith | Regular | ... |
dim_customer_support_copy (bản replicate/subset nhưng conformed)
-------------
| customer_id | customer_name | customer_segment | ... |
|-------------|----------------|------------------|-----|
| 1001 | John Doe | VIP | ... |
| 1002 | Mary Smith | Regular | ... |
fact_sales
-------------
| customer_id | sales_amount | month |
|-------------|--------------|----------|
| 1001 | 5000 | 2024-10 |
| 1002 | 1200 | 2024-10 |fact_support
-------------
| customer_id | ticket_count | month |
|-------------|--------------|----------|
| 1001 | 3 | 2024-10 |
| 1002 | 1 | 2024-10 |-- Pass 1: Sales
SELECT customer_segment, SUM(sales_amount) AS total_sales
FROM fact_sales s
JOIN dim_customer_conformed c USING (customer_id)
GROUP BY customer_segment;
-- Pass 2: Support
SELECT customer_segment, COUNT(*) AS total_tickets
FROM fact_support t
JOIN dim_customer_support_copy c USING (customer_id)
GROUP BY customer_segment;Shrunken Dimensions
Drilling Across
Value Chain
Enterprise Data Warehouse Bus Architecture
Câu hỏi "Enterprise Data Warehouse Bus Architecture là gì?" đã được trả lời ở trên. Còn Nó trông như thế nào? Nó được thiết kế ra sao? Nó hoạt động như thế nào?
Enterprise Data Warehouse Bus Matrix

Detailed Implementation Bus Matrix
Opportunity/Stakeholder Matrix
My Summary
Last updated