Clayton Groom Covenant Technology Partners Intro Clayton Founding

  • Slides: 41
Download presentation
Clayton Groom Covenant Technology Partners

Clayton Groom Covenant Technology Partners

Intro Clayton Founding Groom Partner of CTP cgroom@mailctp. com Twitter: cgroom BI professional for

Intro Clayton Founding Groom Partner of CTP cgroom@mailctp. com Twitter: cgroom BI professional for 15 years MCP BI, MS Visual Technology Specialist (VTS)

Agenda Technical architecture Fundamentals Dimensional modeling rules Conformed dimensions ETL considerations Questions

Agenda Technical architecture Fundamentals Dimensional modeling rules Conformed dimensions ETL considerations Questions

Credits & Thanks Jim Ronan – for getting me started Ralph Kimball – for

Credits & Thanks Jim Ronan – for getting me started Ralph Kimball – for making the way clear Joy Mundy - from whom I’ve shamelessly copied slides…

Operational vs. Analytic systems Operational System Purpose Primary Interaction Style Execution of a business

Operational vs. Analytic systems Operational System Purpose Primary Interaction Style Execution of a business process Analytic system Measurement of a business process Insert, Update, Query, Delete Query Scope of Interaction Individual transactions Query Patterns Temporal Focus Predictable and stable Current Design Optimization Update Concurrency Design Principle Also Known as Entity-Relationship (ER) Design in third normal form (3 NF) Transaction system On Line Transaction Processing System (OLTP) Source System Aggregated transactions Unpredictable and changing Current and historic High-performance query Dimensional design (Star Schema or Cube) Data Warehouse System Data Mart Source: Star Schema, The complete reference By: Christopher Adamson

The DW/BI Technical Architecture Metadata RDBMS Standard Reports Analytic Apps (incl. Data Mining) Business

The DW/BI Technical Architecture Metadata RDBMS Standard Reports Analytic Apps (incl. Data Mining) Business Users OLAP Ad Hoc Queries BI Portal Presentation Servers Dimensionalization Data Quality Business/Extract Rules Source Systems ETL Operational BI I /B W nts D T ne F o S M mp Co Integration Services • RDBMS • Analysis Services • Reporting Services • Data Mining • Visual Studio • 2007 Microsoft Office system • Share. Point • Performance. Pnt • Report Builder

Kimball Method Fundamentals Focus on the business Build a dimensional data warehouse / business

Kimball Method Fundamentals Focus on the business Build a dimensional data warehouse / business intelligence system Dimension tables such as Customer contain descriptive information Fact tables such as Sales contain detailed transactions, and link to the dimensions Dimension attribute changes are managed and conformed across the enterprise Excellent user experience is paramount

Kimball Business Dimensional Lifecycle

Kimball Business Dimensional Lifecycle

Relational Dimensional Model Product Date Key Date Month Name Year Month Calendar Qtr …

Relational Dimensional Model Product Date Key Date Month Name Year Month Calendar Qtr … other attributes Other dims… Promotion Key Promo. Name Sales Rep Key Promo. Contact Sales Rep Name Store Key Promo. City Sales Rep Contact Store Name Sales Rep City Store Contact Store City Sales Fact Product Key Customer Key Date Key … other keys Sales Amount Sales Quantity … other measures Product Key Product SKU Product Name Product Brand Product Family … other attributes Customer Key Account Number Customer Name Customer Zip Customer City … other attributes

It’s not Rocket Science…

It’s not Rocket Science…

But there is a science to it… The goal is to provide information to

But there is a science to it… The goal is to provide information to end users in a way that they don’t have to be rocket scientists to use it.

Kimball’s Ten Essential rules of Dimensional Modeling Rule #1: Load detailed atomic data into

Kimball’s Ten Essential rules of Dimensional Modeling Rule #1: Load detailed atomic data into dimensional Structures Avoid summarizing data at all costs Users will want the details… You can always roll up, but can’t drill down if the detail is not there

Kimball’s Ten Essential rules of Dimensional Modeling Rule #2: Structure Dimensional models around business

Kimball’s Ten Essential rules of Dimensional Modeling Rule #2: Structure Dimensional models around business processes Business processes capture metrics associated with measured business events Metrics translate into facts, stored in a process-specific atomic fact table Accounts Payable Accounts Receivable General ledger Orders Shipments

Kimball’s Ten Essential rules of Dimensional Modeling Rule #3: Every Fact table has a

Kimball’s Ten Essential rules of Dimensional Modeling Rule #3: Every Fact table has a date dimension table associated with it Measurement events will always have a date associated with them Day grain at a minimum Separate Time of Day dimension for time Multiple date/time dimension aliases on any given fact table Order Date Promise Date Ship date

Kimball’s Ten Essential rules of Dimensional Modeling Rule #4: Ensure that all facts in

Kimball’s Ten Essential rules of Dimensional Modeling Rule #4: Ensure that all facts in a single fact table are at the same grain or level of detail Possible grain types: Transactional (GL, Orders, etc. ) Periodic Snapshot (Bank Balance, Inventory levels) Accumulating Snapshot (“To date” statuses, Fact table updated)

Kimball’s Ten Essential rules of Dimensional Modeling Rule #5: Resolve many-to-many relationships in fact

Kimball’s Ten Essential rules of Dimensional Modeling Rule #5: Resolve many-to-many relationships in fact tables Use M: M Bridge tables when appropriate Multiple diagnoses associated with a single event

Kimball’s Ten Essential rules of Dimensional Modeling Rule #6: Resolve many-to-one relationships in dimension

Kimball’s Ten Essential rules of Dimensional Modeling Rule #6: Resolve many-to-one relationships in dimension tables Resist the urge to “snowflake” Know what exceptions are allowable Large product catalog: Size + Color + Style = SKU

Kimball’s Ten Essential rules of Dimensional Modeling Rule #7: Store report labels and filter

Kimball’s Ten Essential rules of Dimensional Modeling Rule #7: Store report labels and filter domain values in dimension tables Keep the end user in mind… Proper case attributes so they don’t SHOUT Combines code/description attributes Division Code = ‘ 001’ Division Name = ‘Springfield’ Division Label = ‘Springfield (001)’ or ‘(001) Springfield’

Kimball’s Ten Essential rules of Dimensional Modeling Rule #8: Make sure dimension tables use

Kimball’s Ten Essential rules of Dimensional Modeling Rule #8: Make sure dimension tables use a surrogate key Don’t forget to have alternate keys on business key column(s)! Required to support slowly changing dimensions (SCD’s) You cannot rely on source systems for business keys.

Kimball’s Ten Essential rules of Dimensional Modeling Rule #9: Create conformed dimension to integrate

Kimball’s Ten Essential rules of Dimensional Modeling Rule #9: Create conformed dimension to integrate data across the enterprise Common reference dimensions are key to: Integrating data across multiple source systems Required for cross-drill from one fact table to another Enterprise DW Bus Matrix – the blue print for your EDW Reuse enables rapid development Require a commitment to data stewardship

DW Bus Matrix Sample

DW Bus Matrix Sample

Kimball’s Ten Essential rules of Dimensional Modeling Rule #10: Continuously balance the requirements and

Kimball’s Ten Essential rules of Dimensional Modeling Rule #10: Continuously balance the requirements and realities to deliver a DW/BI solution that’s accepted by the business users and supports their decision making. Don’t forget your audience Deliver incrementally

Surrogate Keys Dimension PKs should be surrogate (meaningless) keys Managed by the DW Usually

Surrogate Keys Dimension PKs should be surrogate (meaningless) keys Managed by the DW Usually an integer type Usually populated via IDENTITY keyword in dimension table definition Why? Small (int) keys are vital for performance The source system WILL screw you if you don’t manage the keys yourself Enables dimension attribute change tracking

Surrogate Keys and ETL Dimensions Carry source system key(s) as non-key attributes in the

Surrogate Keys and ETL Dimensions Carry source system key(s) as non-key attributes in the dimension New rows automatically get a new surrogate key Facts Fact table usually does not contain source system keys Final step of fact processing is to exchange the source system keys for DW surrogate keys Lookup to dimension tables based on source key, returning surrogate key

Conformed Dimensions There is one master dimension table that all fact tables subscribe to

Conformed Dimensions There is one master dimension table that all fact tables subscribe to Get agreement organization-wide on: What the dimensions are called Which hierarchies you have Similar-but-different attributes and hierarchies have different names Which attributes are managed by restating history and which by tracking history Create two sets of attributes if you need it both ways Why? Single version of the truth Flexibility of basic design

Dimensional Modeling Myths and Misconceptions Dimensional means summary Dimensional models are built to support

Dimensional Modeling Myths and Misconceptions Dimensional means summary Dimensional models are built to support specific applications (or departments) The dimensional model is less flexible than a third normal form model in DW/BI systems The dimensional approach is not Enterprise oriented

Gather Business Requirements Gather detailed requirements from the business users This means you have

Gather Business Requirements Gather detailed requirements from the business users This means you have to talk to them Document requirements, or you’ll have to do it again Talk to IT (data experts) too Multi-step process [Sometimes] Overview of the landscape. Where should we begin? Overview of data realities Detailed requirements and data realities

Profile the Data • • • Early and often Does the data exist to

Profile the Data • • • Early and often Does the data exist to support the required analysis? Where are the problems affecting ETL design Primary keys Referential integrity NULL values Junk values The dreaded “Notes” field Hijacked fields (My Favorite!)

Design the Dimensional Model • • Dimensions are the key UI element to your

Design the Dimensional Model • • Dimensions are the key UI element to your organization’s information Dimension grain − What does a row in the dimension table represent? Dimension hierarchies − Real vs. navigational Dimension attribute changes − Type 1: Restate history − Type 2: Track history

Changing Attributes • Each attribute (column) in the dimension table is subject to change

Changing Attributes • Each attribute (column) in the dimension table is subject to change − What do the business users want? − Sometimes they want it both ways • Type 1 (Update) − Easiest for base ETL, simply update column in place − Potentially problematic for aggregate management • Type 2 (Track history) − Add a new row for each new set of attributes − Facts tie in to the set of attributes in effect at trxn time − Track row effective date range, row is current, potentially row change reason

Data Extraction Best Practices • • • Minimize impact on the source system −

Data Extraction Best Practices • • • Minimize impact on the source system − Keep source queries simple − Often, stage to file or table rather than ETL in stream − Avoid transforming data upon extract Save a copy of the untransformed data − For archival purposes (Internal Audit will love you, insofar as they are capable of emotion) − Design packages with a restart point here Often makes sense to separate E and TL into separate packages

Extracting Data Relational sources Usually pull from sources (use a query) Keep the source

Extracting Data Relational sources Usually pull from sources (use a query) Keep the source query simple Implement source query in the SSIS Data Flow task, Data Reader Source Non-relational Usually sources pushed from source system Flat files common Third-party connectors can allow pull from within SSIS

Compute Data Validity Measures Compute and check measures of data validity as early in

Compute Data Validity Measures Compute and check measures of data validity as early in the process as possible Rowcounts “Reasonableness” counts Income=Expense Sold Store more than N products to X customers data validity measures in processing metadata Evaluate data validity before moving forward

Dimension Hierarchy Management Get religious about hierarchies A true hierarchy has referential integrity between

Dimension Hierarchy Management Get religious about hierarchies A true hierarchy has referential integrity between levels Anything else is simply a reporting relationship Do you need (or want) a key for hierarchy levels? The payoff comes to users, especially in SSAS The ETL system is not the right place to manage true hierarchies People need to be involved Do it before ETL This is a job for Master Data Management or correctly designed source systems

Dimension Loading during Fact Processing Normal case Process dimensions first, then facts Fact table

Dimension Loading during Fact Processing Normal case Process dimensions first, then facts Fact table transformation ends with surrogate key pipeline Look up each source system key for its DW surrogate key Join to populated dimension tables on source system key Return surrogate key Fairly common exception case Load dimension row as observed in fact stream Early arriving facts Many-to-many dimensions

Data Loading Best Practices SQL Destination vs. OLEDB Always use Error Flow on load

Data Loading Best Practices SQL Destination vs. OLEDB Always use Error Flow on load Add a Data Viewer for the first time you try to load data Fast load restrictions limit incremental fast loads to partitioned tables in most scenarios Updates and deletes: Good design usually forbids actual deletes, instead set flag Ledger transaction-grain facts, even if your source system does not OLEDB Command transform MERGE SQL statement Set-based UPDATE SQL statement

Overall Design Considerations ETL application must understand Analysis Services’ requirements The only way to

Overall Design Considerations ETL application must understand Analysis Services’ requirements The only way to process a Fact’s update or delete in SSAS is to fully process the partition containing that fact ETL needs to know which SSAS partitions to process ETL developers aren’t allowed to compromise business user requirements without a cost/benefit analysis and signoff

Conclusion ETL system is harder to design and develop than most people think SQL

Conclusion ETL system is harder to design and develop than most people think SQL Server Integration Services contains functionality you need to build an enterprise-class ETL system Must add some scripting It’s not hard! Some problems are intractably difficult, and no tool will make them magically go away Don’t skimp on ETL! Great ETL makes Analysis Services & Reporting easy.

Additional Resources Books The Microsoft Data Warehouse Toolkit, J. Mundy and W. Thornthwaite, Wiley

Additional Resources Books The Microsoft Data Warehouse Toolkit, J. Mundy and W. Thornthwaite, Wiley (2006) The Data Warehouse ETL Toolkit, R. Kimball and J. Caserta, Wiley (2005) The Data Warehouse Toolkit, 2 nd Edition, R. Kimball and M. Ross, Wiley (2002)

Even More Resources Websites All sample packages are at www. Msft. DWToolkit. com See

Even More Resources Websites All sample packages are at www. Msft. DWToolkit. com See fourteen years of free articles at www. Kimball. Group. com Classes Microsoft Data Warehouse in Depth, a 4 -day class in the SQL Server product set at http: //www. kimballgroup. com/html/kucourse. MDWD. html

Questions?

Questions?