Presentation is loading. Please wait.

Presentation is loading. Please wait.

ISQS 3358, Business Intelligence Extraction, Transformation, and Loading Zhangxi Lin Texas Tech University 1.

Similar presentations


Presentation on theme: "ISQS 3358, Business Intelligence Extraction, Transformation, and Loading Zhangxi Lin Texas Tech University 1."— Presentation transcript:

1 ISQS 3358, Business Intelligence Extraction, Transformation, and Loading Zhangxi Lin Texas Tech University 1

2 Outline Data Integration Introduction to SSIS Learn by doing – Exercise 4 More about SSIS features - Package development tools 2

3 Data Integration

4 Integration that comprises three major processes: ◦ data access, ◦ data federation, and ◦ change capture. When these three processes are correctly implemented, data can be accessed and made accessible to an array of ETL and analysis tools and data warehousing environments ETL Tools 4’56” ETL Tools 4 ISQS 3358 BI

5 Data Integration Enterprise application integration (EAI) A technology that provides a vehicle for pushing data from source systems into a data warehouse, including application functionality integration. Recently service- oriented architecture (SOA) is applied Enterprise information integration (EII) An evolving tool space that promises real-time data integration from a variety of sources, such as relational databases, Web services, and multidimensional databases Extraction, transformation, and load (ETL) A data warehousing process that consists of extraction (i.e., reading data from a database), transformation (i.e., converting the extracted data from its previous form into the form in which it needs to be so that it can be placed into a data warehouse or simply another database), and load (i.e., putting the data into the data warehouse) 5 ISQS 3358 BI

6 Transformation Tools: To purchase or to Build in-House Issues affect whether an organization will purchase data transformation tools or build the transformation process itself ◦ Data transformation tools are expensive ◦ Data transformation tools may have a long learning curve ◦ It is difficult to measure how the IT organization is doing until it has learned to use the data transformation tools Important criteria in selecting an ETL tool ◦ Ability to read from and write to an unlimited number of data source architectures ◦ Automatic capturing and delivery of metadata ◦ A history of conforming to open standards ◦ An easy-to-use interface for the developer and the functional user 6 ISQS 3358 BI

7 Introduction to SSIS

8 ETL Topics Dimension Processing ◦ Extract changed row from the operational database ◦ Handling slowly changing dimensions ◦ De-duplication and fuzzy transforms Fact Processing ◦ Extract fact data from the operational database ◦ Extract fact updates and deletes ◦ Cleaning fact data ◦ Checking data quality and halting package execution ◦ Transform fact data ◦ Surrogate key pipeline ◦ Loading fact data ◦ Analysis services processing Integrating all tasks 8

9 Different Types of ETL Control Flows With data flows, e.g. ◦ Import data ◦ Database updates ◦ Loading SCD ◦ Database cleansing ◦ Aggregating data Without data flows, e.g. ◦ Downloading zipped files ◦ Archiving downloaded files ◦ Reading application log ◦ Mailing opportunities ◦ Consolidating workflow package 9

10 Structure and Components of Business Intelligence 10 SSMS SSIS SSAS SSRS SAS EM SAS EM SAS EG SAS EG MS SQL Server 2008 BIDS

11 What can you do with SSIS? To load the dimension and fact tables in the database. If the source data for a dimension table is stored in multiple data sources, the package can merge the data into one dataset and load the dimension table in a single process, instead of using a separate process for each data source. To update data in data warehouses and data marts. The Slowly Changing Dimension Wizard automates support for slowly changing dimensions by dynamically creating the SQL statements that insert and update records, update related records, and add new columns to tables. To process Analysis Services cubes and dimensions. When the package updates tables in the database that a cube is built on, you can use Integration Services tasks and transformations to automatically process the cube and to process dimensions as well. To compute functions before the data is loaded into its destination. If your data warehouses and data marts store aggregated information, the SSIS package can compute functions such as SUM, AVERAGE, and COUNT. An SSIS transformation can also pivot relational data and transform it into a less-normalized format that is more compatible with the table structure in the data warehouse. 11

12 Youtube Videos Introduction to SQL Server Integration Services ◦ Part 1 10’19”, Part 2 8’12” Part 1Part 2 Create A Basic SSIS Package with SSIS 7’55” Create A Basic SSIS Package with SSIS How to create a simple SSIS package ◦ Part 1 3’19”, Part 2 7’54”, Part 3 6’41” Part 1Part 2Part 3 More videos ◦ An Overview of SSIS  Part 1 6’12”, Part 2 6’13”, Part 3 8’20” Part 1Part 2Part 3 ◦ ETL Demon 10’40” ETL Demon ◦ ETL Tools 4’56” ETL Tools ◦ SSIS 2008 Package Deployment  Part I 8’04”, Part II 5’09” Part I Part II ◦ Introduction to SSIS 2008  Part I 9’57”, Part II 9’57”, Part III 9’55”, Part IV 9’59”, Part V 6’11” Part I Part II Part IIIPart IVPart V ◦ ETL Strategies with SSIS 21’56” ETL Strategies with SSIS

13 SQL Server Integration Services The hierarchy of SSIS ◦ Project -> Package -> Control flow -> Data flow Package structure ◦ Control flow ◦ Data flow ◦ Event handler ◦ Package explorer ◦ Connection tray Features ◦ Event driven ◦ Layered ◦ Drag-and-drop programming ◦ Data I/O definitions are done using Connection Managers 13 Control Flow Data Flow Event Handler

14 Control Flow Bulk Insert task: Perform a fast load of data from flat files into a target table. Good for loading clean data. Execute SQL task: Perform database operations, creating views, tables, or even databases. Good for query data or metadata File Transfer Protocol and File System tasks: transfer files or sets of files. Execute Package, Execute DTS2000 Package, and Execute Process tasks: Break a complex workflow into smaller ones, and define a parent or master package to execute them. Send Mail task: sends an email message. 14

15 Control Flow (cont’d) Script and ActiveX Script tasks: Perform an endless array of operations that are beyond the scope of the standard tasks. Data Mining and Analysis Service Processing tasks: Launch processing on SSAS dimensions and databases. Use SSAS DDL task to create new Analysis Services partitions, or perform any data definition language operation. XML and Web Services tasks Message Queue, WMI Data Reader, and WMI Event Watcher tasks: Help to build an automatic ELT system. ForEach Loop, For Loop, and Sequence containers: Execute a set of tasks multiple times Data Flow tasks 15

16 Data Flow Task Data Flow task is a pipeline in which data is picked up, processed and written to a destination. Avoids I/O, which provided excellent performance Concepts ◦ Data sources ◦ Data destinations ◦ Data transformations ◦ Error flows 16

17 Frequently Used Data Transformation Steps Sort and Aggregate transforms Conditional Split and Multicast transforms Union All, Merge Join, and Lookup transforms Slowly Changing Dimension transform OLE DB Command transform Row Count and Audit transforms Pivot and Unpivot transforms Data mining Model Training and data Mining Query transforms Term extraction and Term Lookup transforms File Extractor and File Injector transforms 17

18 Demo: Exploring Features of SSIS Data Set: ◦ Source: Commrex_2011, D5.txt (in the shared directory under ~\Datasets) ◦ Destination: Flat file, Excel file, OLE DB file Data flow transformation ◦ Aggregate (Use D5.txt, and aggregate the data with regard to UserID) ◦ Derived Column (Use Commrex_2011, and create a new column “NewID”) ◦ Data Conversion (Use Commrex_2011, and convert data type of some columns, such as UserID, Prop_ID) ◦ Sort (use D5.txt, sort ascending with ID, Date, Time) 18

19 LEARN BY DOING – EXERCISE 4

20 Exercise 4: Populate Maximum Miniatures Manufacturing Data Mart Dimensions Preparation: Data sources and destination definition ◦ Source database: AccountingSystemDatabase Loading dimensions ◦ ProductType ◦ ProductSubType ◦ Product ◦ Country ◦ Plant (using SQL Command) ◦ Material (using SQL Command, Aggregate item) ◦ MachineType (copied from the Material loading task) ◦ Machine (copied from the MachineType loading task) Note: DimBatch and the fact table will be loaded in the next exercise. Debugging ◦ Step by step ◦ Understand the error messages ◦ Watch database loading status See more detailed Guidelines of this exerciseGuidelines Submit the screenshots of “green” results of the ETL flow to isqs6347@gmail.com by February 20 before 5p. isqs6347@gmail.com 20

21 Review: A Primary Key A primary key is a candidate key chosen to be the main key for the relation. If you know the value of the primary key, you will be able to uniquely identify a single row.

22 Review: A Foreign Key To preserve relationships, you may need to create a foreign key. A foreign key is a primary key from one table placed into another table. The key is called a foreign key in the table that received the key.

23 Review: Referential Integrity Referential integrity states that every value of a foreign key must match a value of an existing primary key. Example (see previous slide): ◦ If EmpID = 4 in EMPLOYEE has a DeptID = 7 (a foreign key), a Department with DeptID = 7 must exist in DEPARTMENT. ◦ The primary key value must exist before the foreign key value is entered.

24 Snowflake Schema of the Data Mart 24 ManufacturingFact DimProduct DimProductSubType DimProductType DimBatch DimMachine DimMachineType DimMaterial DimPlant DimCountry 1 2 3 6 7 8 4 5 910 AggregateSQL Coding Why following this order?

25 Data Source Lin.AccountingSystemDatabase

26 Codes for data flows The following codes are used to selectively retrieve data from the source for the destination database Code for DimPlant loading SELECT LocationCode, LocationName, CountryCode From Locations WHERE LocationType = 'Plant Site' Code for DimMaterial loading SELECT AssetCode, AssetName, AssetClass, LocationCode, Manufacturer, DateOfPurchase, RawMaterial FROM CapitalAssets WHERE AssetType = 'Molding Machine' 26

27 More About SSIS Features

28 ETL System Debugging Most frequently encountered errors ◦ Data format error: The database table’s data type does not match the input data’s format  Reason 1: Flat Text file uses varchar(50), or string[DT_STR] format; Excel file uses nvarchar format  Reason 2: You defined the database using different formats, which could be caused by the imported data set.  Solution: A Data Conversion data transformation node can be used for changing the format ◦ SQL Server system error: Even though you did things correctly you could not get through.  Solution: the easiest way to solve this problem is to redo the ETL flow. 28

29 ETL How-to Problems How to use Merge function of Data Transformation to join datasets from two tables into one. How to split a dataset to two tables How to remove duplicated rows in a table. How to detect the changes of the rows in the data sources and extract the updated rows into a table in the data warehouse. How to load multiple datasets with similar structure into a table Reference: SQL Server 2005 Integration Services, McGraw Hill Osborne, 2007SQL Server 2005 Integration Services 29

30 Strategies for Extracting Data Extracting data from packaged source systems –self- contained data sources ◦ May not be good to use their APIs ◦ May not be good to use their add-on analytic system Extracting directly from the source databases ◦ Strategies vary depending on the nature of the source database Extracting data from incremental loads ◦ How the source database records the changes of the rows Extracting historical data 30 ISQS 6339, Data Management & Business Intelligence

31 Decision Issues in ETL System Design Source-to-target mapping Load frequency How much history is needed 31 ISQS 6339, Data Management & Business Intelligence

32 De-Duplication Two common situations: person, and organization SSIS provides two general-purpose transforms helping address data quality and de-duplication ◦ Fuzzy Lookup ◦ Fuzzy Grouping 32

33 Connection managers Excel Connection Manger File Connection Manger Flat File Connection Manager FTP Connection Manager HTTP Connection Manager ODBC Connection Manager OLE DB Connection Manager ADO Connection Manager – for legacy applications using earlier versions of programming languages, such as VB 6.0 ADO.NET Connection Manager – Access to Microsoft SQL Server and data sources exposed through OLE DB and XML by using a.NET provider Microsoft.NET Data Provider for mySQL Business Suite – access to SAP server and enables to execute RFC/NAPI commands and select queries against SAP tables Design-time data source objects can be created in SSIS, SSAS and SSRS projects 33

34 Container Managers Foreach Loop Container For Loop Container Sequence Container 34

35 Data Flow for Updating Database 35

36 Data Flow for Loading Slowly Changing Dimension 36

37 Control Flow for Importing Expanded Files 37

38 Automating your routine information processing tasks Your routine information processing tasks ◦ Read online news at 8:00a and collect a few most important pieces ◦ Retrieve data from database to draft a short daily report at 10a ◦ View and reply emails and take some notes that are saved in a database ◦ View 10 companies’ webpage to see the updates. Input the summaries into a database ◦ Browse three popular magazines twice a week. Input the summaries into a database ◦ Generate a few one-way frequency and two-way frequency tables and put them on the web ◦ Merge datasets collected by other people into a main database. ◦ Prepare a weekly report using the database and at 4p every Monday, and publish it to the internal portal site. ◦ Prepare a monthly report at 11a on the first day of a month, which must be converted into a pdf file and uploaded to the website. Seems there are many things on going. How to handle them properly in the right time? ◦ Organizer – yes ◦ How about regular data processing tasks? 38

39 Package Items Data flow Task – main task Control Flow Items ◦ For Loop Container, Foreach Loop Container, Sequence Container Data Preparation Tasks ◦ File System Task, FTP Task, Web Service Task, XML Task Work Flow Tasks ◦ Execute Package Task, Execute DTS 2000 Package Task, Execute Process Task, Message Queue Task, Send Mail Task, WMI Data Reader Task, WMI Event Watcher Task SQL Server Tasks ◦ Bulk Insert Task, Execute SQL task Scripting Tasks ◦ ActiveX Script Task, Script Task Analysis Services Tasks ◦ Analysis Services Processing Task, Analysis Services Execute DDL Task, Data Mining Query Task Transfer Tasks ◦ Transfer Database Task, Transfer Error Messages Task, Transfer Logins Task Transfer Objects Task, Transfer Stored Procedures Task Maintenance Tasks Custom Tasks 39


Download ppt "ISQS 3358, Business Intelligence Extraction, Transformation, and Loading Zhangxi Lin Texas Tech University 1."

Similar presentations


Ads by Google