Lab 1: Implementing Data Flow in an SSIS Package

Size: px
Start display at page:

Download "Lab 1: Implementing Data Flow in an SSIS Package"

Transcription

1 Lab 1: Implementing Data Flow in an SSIS Package In this lab, you will focus on the extraction of customer and sales order data from the InternetSales database used by the company s e-commerce site, which you must load into the Staging database. This database contains customer data (in a table named Customers), and sales order data (in tables named SalesOrderHeader and SalesOrderDetail). You will extract sales order data at the line item level of granularity. The total sales amount for each sales order line item is then calculated by multiplying the unit price of the product purchased by the quantity ordered. Additionally, the sales order data includes only the ID of the product purchased, so your data flow must look up the details of each product in a separate Products database. Objectives After completing this lab, you will be able to: Extract and profile source data. Implement a data flow. Use transformations in a data flow. Lab Setup Estimated Time: 60 minutes Virtual machine: 20463C-MIA-SQL User name: ADVENTUREWORKS\Student Password: Pa$$w0rd Exercise 1: Exploring Source Data You have designed a data warehouse schema for Adventure Works Cycles, and now you must design an ETL process to populate it with data from various source systems. Before creating the ETL solution, you have decided to examine the source data so you can understand it better. The main tasks for this exercise are as follows: 1. Prepare the Lab Environment 2. Extract and View Sample Source Data 3. Profile Source Data 1

2 Task 1 1. Ensure that the 20463C-MIA-DC and 20463C-MIA-SQL virtual machines are both running, and then log on to 20463C-MIA-SQL as ADVENTUREWORKS\Student with the password Pa$$w0rd. 2. In the 20463C-MIA-SQL virtual machine, run Setup.cmd in the D:\Labfiles\Lab04\Starter folder as Administrator. Task 2 1. Use the SQL Server 2014 Import and Export Data Wizard to extract a sample of customer data from the InternetSales database on the localhost instance of SQL Server to a comma-delimited flat file. o Your sample should consist of the first 1,000 records in the Customers table. o You should use a text qualifier because some string values in the table may contain commas. 2. After you have extracted the sample data, use Excel to view it. Task 3 1. Create an Integration Services project named Explore Internet Sales in the D:\Labfiles\Lab04\Starter folder. 2. Add an ADO.NET connection manager that uses Windows authentication to connect to the InternetSales database on the localhost instance of SQL Server. 3. Use a Data Profiling task to generate the following profile requests for data in the InternetSales database: 4. Column statistics for the OrderDate column in the SalesOrderHeader table. You will use this data to find the earliest and latest dates on which orders have been placed. 5. Column length distribution for the AddressLine1 column in the Customers table. You will use this data to determine the appropriate column length to allow for address data. 6. Column null ratio for the AddressLine2 column in the Customers table. You will use this data to determine how often the second line of an address is null. 7. Value inclusion for matches between the PaymentType column in the SalesOrderHeader table and the PaymentTypeKey column in the PaymentTypes table. Do not apply an inclusion threshold and set a maximum limit of 100 violations. You will use this data to find out if any orders have payment types that are not present in the table of known payment types. 8. Run the SSIS package and view the report that the Data Profiling task generates in the Data Profile Viewer. Result: After this exercise, you should have a comma-separated text file that contains a sample of customer data, and a data profile report that shows statistics for data in the InternetSales database. 2

3 Exercise 2: Transferring Data by Using a Data Flow Task Now that you have explored the source data in the InternetSales database, you are ready to start implementing data flows for the ETL process. A colleague has already implemented data flows for reseller sales data, and you plan to model your Internet sales data flows on those. The main tasks for this exercise are as follows: 1. Examine an Existing Data Flow 2. Create a Data Flow task 3. Add a Data Source to a Data Flow 4. Add a Data Destination to a Data Flow 5. Test the Data Flow Task Task 1 1. Open the D:\Labfiles\Lab04\Starter\Ex2\ AdventureWorksETL.sln solution in Visual Studio. 2. Open the Extract Reseller Data.dtsx package and examine its control flow. Note that it contains two Data Flow tasks. 3. On the Data Flow tab, view the Extract Resellers task and note that it contains a source named Resellers and a destination named Staging DB. 4. Examine the Resellers source, noting the connection manager that it uses, the source of the data, and the columns that its output contains. 5. Examine the Staging DB destination, noting the connection manager that it uses, the destination table for the data, and the mapping of input columns to destination columns. 6. Right-click anywhere on the Data Flow design surface, click Execute Task, and then observe the data flow as it runs, noting the number of rows transferred. 7. When the data flow has completed, stop the debugging session. Task 2 1. Add a new package to the project and name it Extract Internet Sales Data.dtsx. 2. Add a Data Flow task named Extract Customers to the new package s control flow. Task 3 1. Create a new project-level OLE DB connection manager that uses Windows authentication to connect to the InternetSales database on the localhost instance of SQL Server. 2. In the Extract Customers data flow, add a source that uses the connection manager that you created for the InternetSales database, and name it Customers. 3

4 3. Configure the Customers source to extract all columns from the Customers table in the InternetSales database. Task 4 1. Add a destination that uses the existing localhost.staging connection manager to the Extract Customers data flow, and then name it Staging DB. 2. Connect the output from the Customers source to the input of the Staging DB destination. 3. Configure the Staging DB destination to load data into the Customers table in the Staging database. 4. Ensure that all columns are mapped, and in particular that the CustomerKey input column is mapped to the CustomerBusinessKey destination column. Task 5 1. Right-click anywhere on the Data Flow design surface, click Execute Task, and then observe the data flow as it runs, noting the number of rows transferred. 2. When the data flow has completed, stop the debugging session. Result: After this exercise, you should have an SSIS package that contains a single Data Flow task, which extracts customer records from the InternetSales database and inserts them into the Staging database. Exercise 3: Using Transformations in a Data Flow You have implemented a simple data flow to transfer customer data to the staging database. Now you must implement a data flow for Internet sales records. The new data flow must add a new column that contains the total sales amount for each line item (which is derived by multiplying the list price by the quantity of units purchased), and use a product key value to find additional data in a separate Products database. Once again, you will model your solution on a data flow that a colleague has already implemented for reseller sales data. The main tasks for this exercise are as follows: 1. Examine an Existing Data Flow 2. Create a Data Flow Task 3. Add a Data Source to a Data Flow 4. Add a Derived Column transformation to a data flow 5. Add a Lookup Transformation to a Data Flow 6. Add a Data Destination to a Data Flow 7. Test the Data Flow task 4

5 Task 1 1. Open the D:\Labfiles\Lab04\Starter\Ex3\AdventureWorksETL.sln solution in Visual Studio. 2. Open the Extract Reseller Data.dtsx package and examine its control flow. Note that it contains two Data Flow tasks. 3. On the Data Flow tab, view the Extract Reseller Sales task. 4. Examine the Reseller Sales source, noting the connection manager that it uses, the source of the data, and the columns that its output contains. 5. Examine the Calculate Sales Amount transformation, noting the expression that it uses to create a new derived column. 6. Examine the Lookup Product Details transformation, noting the connection manager and query that it uses to look up product data, and the column mappings used to match data and add rows to the data flow. 7. Examine the Staging DB destination, noting the connection manager that it uses, the destination table for the data, and the mapping of input columns to destination columns. 8. Right-click anywhere on the Data Flow design surface, click Execute Task, and then observe the data flow as it runs, noting the number of rows transferred. 9. When the data flow has completed, stop the debugging session. Task 2 1. Open the Extract Internet Sales Data.dtsx package, and then add a new Data Flow task named Extract Internet Sales to its control flow. 2. Connect the pre-existing Extract Customers Data Flow task to the new Extract Internet Sales task. Task 3 1. Add a source that uses the existing localhost.internetsales connection manager to the Extract Internet Sales data flow, and then name it Internet Sales. 2. Configure the Internet Sales source to use the Transact-SQL code in the D:\Labfiles\Lab04\Starter\Ex3\InternetSales.sql query file query to extract Internet sales records. Task 4 1. Add a Derived Column transformation named Calculate Sales Amount to the Extract Internet Sales data flow. 2. Connect the output from the InternetSales source to the input of the Calculate Sales Amount transformation. 3. Configure the Calculate Sales Amount transformation to create a new column named SalesAmount containing the UnitPrice column value multiplied by the OrderQuantity column value. 5

6 Task 5 1. Add a Lookup transformation named Lookup Product Details to the Extract Internet Sales data flow. 2. Connect the output from the Calculate Sales Amount transformation to the input of the Lookup Product Details transformation. 3. Configure the Lookup Product Details transformation to: o Redirect unmatched rows to the no match output. Use the localhost.products connection manager and the Products.sql query in the o D:\Labfiles\Lab04\Starter\Ex3 folder to retrieve product data. o Match the ProductKey input column to the ProductKey lookup column. o Add all lookup columns other than ProductKey to the data flow. 4. Add a flat file destination named Orphaned Sales to the Extract Internet Sales data flow. Then redirect non-matching rows from the Lookup Product Details transformation to the Orphaned Sales destination, which should save any orphaned records in a comma-delimited file named Orphaned Internet Sales.csv in the D:\ETL folder. Task 6 1. Add a destination that uses the localhost.staging connection manager to the Extract Customers data flow, and name it Staging DB. 2. Connect the match output from the Lookup Product Details transformation to the input of the Staging DB destination. 3. Configure the Staging DB destination to load data into the InternetSales table in the Staging database. Ensure that all columns are mapped. In particular, ensure that the *Key input columns are mapped to the *BusinessKey destination columns. Task 7 1. Right-click anywhere on the Data Flow design surface, click Execute Task, and then observe the data flow as it runs, noting the number of rows. 2. When the data flow has completed, stop the debugging session. Result: After this exercise, you should have a package that contains a Data Flow task including Derived Column and Lookup transformations 6

7 Lab 2: Implementing Control Flow in an SSIS Package You are implementing an ETL solution for Adventure Works Cycles and must ensure that the data flows you have already defined are executed as a workflow that notifies operators of success or failure by sending an message. You must also implement an ETL solution that transfers data from text files generated by the company s financial accounting package to the data warehouse. Objectives After completing this lab, you will be able to: Use tasks and precedence constraints. Use variables and parameters. Use containers. Lab Setup Estimated Time: 60 minutes Virtual machine: 20463C-MIA-SQL User name: ADVENTUREWORKS\Student Password: Pa$$w0rd Exercise 1: Using Tasks and Precedence in a Control Flow You have implemented data flows to extract data and load it into a staging database as part of the ETL process for your data warehousing solution. Now you want to coordinate these data flows by implementing a control flow that notifies an operator of the outcome of the process. The main tasks for this exercise are as follows: 1. Prepare the Lab Environment 2. View a Control Flow 3. Add Tasks to a Control Flow 4. Test the Control Flow 7

8 Task 1 1. Ensure the 20463C-MIA-DC and 20463C-MIA-SQL virtual machines are both running, and then log on to 20463C-MIA-SQL as ADVENTUREWORKS\Student with the password Pa$$w0rd. 2. Run Setup.cmd in the D:\Labfiles\Lab05A\Starter folder as Administrator. Task 2 1. Use Visual Studio to open the AdventureWorksETL.sln solution in the D:\Labfiles\Lab05A\Starter\Ex1 folder. 2. Open the Extract Reseller Data.dtsx package and examine its control flow. Note that it contains two Send Mail tasks one that runs when either the Extract Resellers or Extract Reseller Sales tasks fail, and one that runs when the Extract Reseller Sales task succeeds. 3. Examine the settings for the precedence constraint connecting the Extract Resellers task to the Send Failure Notification task to determine the conditions under which this task will be executed. 4. Examine the settings for the Send Mail tasks, noting that they both use the Local SMTP Server connection manager. 5. Examine the settings of the Local SMTP Server connection manager. 6. On the Debug menu, click Start Debugging to run the package, and observe the control flow as the task executes. Then, when the task has completed, on the Debug menu, click Stop Debugging. 7. In the C:\inetpub\mailroot\Drop folder, double-click the most recent file to open it in Outlook. Then read the message and close Outlook. Task 3 1. Open the Extract Internet Sales Data.dtsx package and examine its control flow. 2. Add a Send Mail task to the control flow, configure it with the following settings, and create a precedence constraint that runs this task if the Extract Internet Sales task succeeds: o Name: Send Success Notification SmtpConnection: A new SMTP Connection Manager named Local SMTP Server that connects to the o localhost SMTP server o From: ETL@adventureworks.msft o To: Student@adventureworks.msft o Subject: Data Extraction Notification o MessageSourceType: Direct Input o MessageSource: The Internet Sales data was successfully extracted o Priority: Normal 8

9 Add a second Send Mail task to the control flow, configure it with the following settings, and create a 3. precedence constraint that runs this task if either the Extract Customers or Extract Internet Sales task fails: o Name: Send Failure Notification o SmtpConnection: The Local SMTP Server connection manager you created previously o From: ETL@adventureworks.msft o To: Student@adventureworks.msft o Subject: Data Extraction Notification o MessageSourceType: Direct Input o MessageSource: The Internet Sales data extraction process failed o Priority: High Task 4 Set the ForceExecutionResult property of the Extract Customers task to Failure. Then run the package 1. and observe the control flow. When package execution is complete, stop debugging and verify that the failure notification 2. message has been delivered to the C:\inetpub\mailroot\Drop folder. You can double-click the message to open it in Outlook. Set the ForceExecutionResult property of the Extract Customers task to None. Then run the package 3. and observe the control flow. When package execution is complete, stop debugging and verify that the success notification 4. message has been delivered to the C:\inetpub\mailroot\Drop folder. 5. Close Visual Studio when you have completed the exercise. Result: After this exercise, you should have a control flow that sends an message if the Extract Internet Sales task succeeds, or sends an message if either the Extract Customers or Extract Internet Sales tasks fail. Exercise 2: Using Variables and Parameters You need to enhance your ETL solution to include the staging of payments data that is generated in commaseparated value (CSV) format from a financial accounts system. You have implemented a simple data flow that reads data from a CSV file and loads it into the staging database. You must now modify the package to construct the folder path and file name for the CSV file dynamically at run time instead of relying on a hardcoded name in the data flow task settings. 9

10 The main tasks for this exercise are as follows: 1. View a Control Flow 2. Create a Variable 3. Create a Parameter 4. Use a Variable and a Parameter in an Expression Task 1 1. View the contents of the D:\Accounts folder and note the files it contains. In this exercise, you will modify an existing package to create a dynamic reference to one of these files. 2. Open the AdventureWorksETL.sln solution in the D:\Labfiles\Lab05A\Starter\Ex2 folder. 3. Open the Extract Payment Data.dtsx package and examine its control flow. Note that it contains a single data flow task named Extract Payments. 4. View the Extract Payments data flow and note that it contains a flat file source named Payments File, and an OLE DB destination named Staging DB. 5. View the settings of the Payments File source and note that it uses a connection manager named Payments File. 6. In the Connection Managers pane, double-click Payments File, and note that it references the Payments.csv file in the D:\Labfiles\Lab05A\Starter\Ex2 folder. This file has the same data structure as the payments file in the D:\Accounts folder. 7. Run the package, and stop debugging when it has completed. 8. On the Execution Results tab, find the following line in the package execution log: [Payments File [2]] Information: The processing of the file D:\Labfiles\Lab05A\Starter\Ex2\Payments.csv has started Task 2 1. Add a variable with the following properties to the package: o Name: fname o Scope: Extract Payments Data o Data type: String o Value: Payments - US.csv 10

11 Task 3 1. Add a project parameter with the following settings: o Name: AccountsFolderPath o Data type: String o Value: D:\Accounts\ o Sensitive: False o Required: True o Description: Path to accounts files Task 4 1. Set the Expressions property of the Payments File connection manager in the Extract Payment Data package so that the ConnectionString property uses the 2. Run the package and view the execution results to verify that the data in the D:\Accounts\Payments - US.csv file was loaded. 3. Close Visual Studio when you have completed the exercise. Result: After this exercise, you should have a package that loads data from a text file based on a parameter that specifies the folder path where the file is stored, and a variable that specifies the file name. Exercise 3: Using Containers You have created a control flow that loads Internet sales data and sends a notification message to indicate whether the process succeeded or failed. You now want to encapsulate the data flow tasks for this control flow in a sequence container so you can manage them as a single unit. You have also successfully created a package that loads payments data from a single CSV file based on a dynamically-derived folder path and file name. Now you must extend this solution to iterate through all the files in the folder and import data from each one. The main tasks for this exercise are as follows: 1. Add a Sequence Container to a Control Flow 2. Add a Foreach Loop Container to a Control Flow 11

12 Task 1 1. Open the AdventureWorksETL solution in the D:\Labfiles\Lab05A\Starter\Ex3 folder. 2. Open the Extract Internet Sales Data.dtsx package and modify its control flow so that: The Extract Customers and Extract Internet Sales tasks are contained in a Sequence container o named Extract Customer Sales Data. o The Send Failure Notification task is executed if the Extract Customer Sales Data container fails. The Send Success Notification task is executed if the Extract Customer Sales Data container o succeeds. Run the package to verify that it successfully completes both data flow tasks in the sequence and then 3. executes the Send Success Notification task. Task 2 1. In the AdventureWorksETL solution, open the Extract Payment Data.dtsx package. 2. Move the existing Extract Payments Data Flow task into a new Foreach Loop Container. Configure the Foreach Loop Container so that it loops through the files in the folder referenced by the 3. AccountsFolderPath parameter, adding each file to the fname variable. 4. Run the package and count the number of times the Foreach Loop is executed. When execution has completed, stop debugging and view the results to verify that all files in the 5. D:\Accounts folder were processed. 6. Close Visual Studio when you have completed the exercise. Result: After this exercise, you should have one package that encapsulates two data flow tasks in a sequence container, and another that uses a Foreach Loop to iterate through the files in a folder specified in a parameter and uses a data flow task to load their contents into a database. 12

Integration Services. Creating an ETL Solution with SSIS. Module Overview. Introduction to ETL with SSIS Implementing Data Flow

Integration Services. Creating an ETL Solution with SSIS. Module Overview. Introduction to ETL with SSIS Implementing Data Flow Pipeline Integration Services Creating an ETL Solution with SSIS Module Overview Introduction to ETL with SSIS Implementing Data Flow Lesson 1: Introduction to ETL with SSIS What Is SSIS? SSIS Projects

More information

Module Overview. Instructor Notes (PPT Text)

Module Overview. Instructor Notes (PPT Text) Module 06 - Debugging and Troubleshooting SSIS Packages Page 1 Module Overview 12:55 AM Instructor Notes (PPT Text) As you develop more complex SQL Server Integration Services (SSIS) packages, it is important

More information

SQL Server Integration Services

SQL Server Integration Services www.logicalimagination.com 800.657.1494 SQL Server Integration Services Course #: SS-103 Duration: 3 days Prerequisites This course assumes no prior knowledge of SQL Server Integration Services. This course

More information

Implementing and Maintaining Microsoft SQL Server 2008 Integration Services

Implementing and Maintaining Microsoft SQL Server 2008 Integration Services Course 6235A: Implementing and Maintaining Microsoft SQL Server 2008 Integration Services Course Details Course Outline Module 1: Introduction to SQL Server 2008 Integration Services The students will

More information

Implementing and Maintaining Microsoft SQL Server 2008 Integration Services

Implementing and Maintaining Microsoft SQL Server 2008 Integration Services Implementing and Maintaining Microsoft SQL Server 2008 Integration Services Course 6235A: Three days; Instructor-Led Introduction This three-day instructor-led course teaches students how to implement

More information

MOC 20463C: Implementing a Data Warehouse with Microsoft SQL Server

MOC 20463C: Implementing a Data Warehouse with Microsoft SQL Server MOC 20463C: Implementing a Data Warehouse with Microsoft SQL Server Course Overview This course provides students with the knowledge and skills to implement a data warehouse with Microsoft SQL Server.

More information

Module Overview. Monday, January 30, :55 AM

Module Overview. Monday, January 30, :55 AM Module 11 - Extending SQL Server Integration Services Page 1 Module Overview 12:55 AM Instructor Notes (PPT Text) Emphasize that this module is not designed to teach students how to be professional SSIS

More information

Dynamically build connection objects for Microsoft Access databases in SQL Server Integration Services SSIS

Dynamically build connection objects for Microsoft Access databases in SQL Server Integration Services SSIS Dynamically build connection objects for Microsoft Access databases in SQL Server Integration Services SSIS Problem As a portion of our daily data upload process, we receive data in the form of Microsoft

More information

Integration Services ETL. SQL Server Integration Services. SQL Server Integration Services. Mag. Thomas Griesmayer

Integration Services ETL. SQL Server Integration Services. SQL Server Integration Services. Mag. Thomas Griesmayer ETL Integration Services Mag. Thomas Griesmayer Extract, Transform, Load is a process, that is able to use data from different data sources, transform the data and store the result in any data destination.

More information

Installation and Getting Started

Installation and Getting Started SECTION 1 AL Installation and Getting Started RI LESSON 1: Moving Data with the Import and Export Wizard TE LESSON 2: Installing SQL Server Integration Services MA LESSON 3: Installing the Sample Databases

More information

Implement a Data Warehouse with Microsoft SQL Server

Implement a Data Warehouse with Microsoft SQL Server Implement a Data Warehouse with Microsoft SQL Server 20463D; 5 days, Instructor-led Course Description This course describes how to implement a data warehouse platform to support a BI solution. Students

More information

20463C-Implementing a Data Warehouse with Microsoft SQL Server. Course Content. Course ID#: W 35 Hrs. Course Description: Audience Profile

20463C-Implementing a Data Warehouse with Microsoft SQL Server. Course Content. Course ID#: W 35 Hrs. Course Description: Audience Profile Course Content Course Description: This course describes how to implement a data warehouse platform to support a BI solution. Students will learn how to create a data warehouse 2014, implement ETL with

More information

Implementing a Data Warehouse with Microsoft SQL Server

Implementing a Data Warehouse with Microsoft SQL Server Course 20463C: Implementing a Data Warehouse with Microsoft SQL Server Page 1 of 6 Implementing a Data Warehouse with Microsoft SQL Server Course 20463C: 4 days; Instructor-Led Introduction This course

More information

Module Overview. Instructor Notes (PPT Text)

Module Overview. Instructor Notes (PPT Text) Module 12 - Deploying and Configuring SSIS Packages Page 1 Module Overview Instructor Notes (PPT Text) Microsoft SQL Server Integration Services (SSIS) provides tools that make it easy to deploy packages

More information

Deccansoft Software Services. SSIS Syllabus

Deccansoft Software Services. SSIS Syllabus Overview: SQL Server Integration Services (SSIS) is a component of Microsoft SQL Server database software which can be used to perform a broad range of data migration, data integration and Data Consolidation

More information

Implementing a Data Warehouse with Microsoft SQL Server 2012

Implementing a Data Warehouse with Microsoft SQL Server 2012 Implementing a Data Warehouse with Microsoft SQL Server 2012 Course 10777A 5 Days Instructor-led, Hands-on Introduction Data warehousing is a solution organizations use to centralize business data for

More information

Implementing a Data Warehouse with Microsoft SQL Server 2012

Implementing a Data Warehouse with Microsoft SQL Server 2012 10777 - Implementing a Data Warehouse with Microsoft SQL Server 2012 Duration: 5 days Course Price: $2,695 Software Assurance Eligible Course Description 10777 - Implementing a Data Warehouse with Microsoft

More information

$99.95 per user. SQL Server 2008 Integration Services CourseId: 158 Skill level: Run Time: 42+ hours (210 videos)

$99.95 per user. SQL Server 2008 Integration Services CourseId: 158 Skill level: Run Time: 42+ hours (210 videos) Course Description Our is a comprehensive A-Z course that covers exactly what you want in an SSIS course: data flow, data flow, and more data flow. You will learn about transformations, common design patterns

More information

Acknowledgments...iii

Acknowledgments...iii Contents Acknowledgments...iii Chapter 1: Introduction... 1 Why Use SSIS?... 1 Efficiency... 2 Database Agnostic... 3 Support and Documentation... 3 Availability... 3 An SSIS Overview... 3 OLE DB vs. ODBC...

More information

20767B: IMPLEMENTING A SQL DATA WAREHOUSE

20767B: IMPLEMENTING A SQL DATA WAREHOUSE ABOUT THIS COURSE This 5-day instructor led course describes how to implement a data warehouse platform to support a BI solution. Students will learn how to create a data warehouse with Microsoft SQL Server

More information

This course is suitable for delegates working with all versions of SQL Server from SQL Server 2008 through to SQL Server 2016.

This course is suitable for delegates working with all versions of SQL Server from SQL Server 2008 through to SQL Server 2016. (SSIS) SQL Server Integration Services Course Description: Delegates attending this course will have requirements to implement SQL Server Integration Services (SSIS) to export and import data between mixed

More information

Implementing a SQL Data Warehouse

Implementing a SQL Data Warehouse Course 20767B: Implementing a SQL Data Warehouse Page 1 of 7 Implementing a SQL Data Warehouse Course 20767B: 4 days; Instructor-Led Introduction This 4-day instructor led course describes how to implement

More information

SQL Server 2005 Integration Services

SQL Server 2005 Integration Services Integration Services project An Integration Services project allows managing all ETL processes It is based on Business Intelligence projects of type Integration Services Open Visual Studio and create a

More information

COPYRIGHTED MATERIAL. Contents. Introduction. Chapter 1: Welcome to SQL Server Integration Services 1. Chapter 2: The SSIS Tools 21

COPYRIGHTED MATERIAL. Contents. Introduction. Chapter 1: Welcome to SQL Server Integration Services 1. Chapter 2: The SSIS Tools 21 Introduction xxix Chapter 1: Welcome to SQL Server Integration Services 1 SQL Server SSIS Historical Overview 2 What s New in SSIS 2 Getting Started 3 Import and Export Wizard 3 The Business Intelligence

More information

Vendor: Microsoft. Exam Code: Exam Name: Implementing a Data Warehouse with Microsoft SQL Server Version: Demo

Vendor: Microsoft. Exam Code: Exam Name: Implementing a Data Warehouse with Microsoft SQL Server Version: Demo Vendor: Microsoft Exam Code: 70-463 Exam Name: Implementing a Data Warehouse with Microsoft SQL Server 2012 Version: Demo DEMO QUESTION 1 You are developing a SQL Server Integration Services (SSIS) package

More information

Exam /Course 20767B: Implementing a SQL Data Warehouse

Exam /Course 20767B: Implementing a SQL Data Warehouse Exam 70-767/Course 20767B: Implementing a SQL Data Warehouse Course Outline Module 1: Introduction to Data Warehousing This module describes data warehouse concepts and architecture consideration. Overview

More information

Implementing a Data Warehouse with SQL Server 2014

Implementing a Data Warehouse with SQL Server 2014 Training Handbook Implementing a Data Warehouse with SQL Server 2014 Some elements of this workshop are subject to change. This workshop is for informational purposes only. Module 2: Creating Multidimensional

More information

Module 7: Automating Administrative Tasks

Module 7: Automating Administrative Tasks Module 7: Automating Administrative Tasks Table of Contents Module Overview 7-1 Lesson 1: Automating Administrative Tasks in SQL Server 2005 7-2 Lesson 2: Configuring SQL Server Agent 7-10 Lesson 3: Creating

More information

Implementing a SQL Data Warehouse

Implementing a SQL Data Warehouse Implementing a SQL Data Warehouse 20767B; 5 days, Instructor-led Course Description This 4-day instructor led course describes how to implement a data warehouse platform to support a BI solution. Students

More information

REST API Operations. 8.0 Release. 12/1/2015 Version 8.0.0

REST API Operations. 8.0 Release. 12/1/2015 Version 8.0.0 REST API Operations 8.0 Release 12/1/2015 Version 8.0.0 Table of Contents Business Object Operations... 3 Search Operations... 6 Security Operations... 8 Service Operations... 11 Business Object Operations

More information

Module 2: Creating Multidimensional Analysis Solutions

Module 2: Creating Multidimensional Analysis Solutions Module 2: Creating Multidimensional Analysis Solutions Overview Developing Analysis Services Solutions Creating Data Sources and Data Source Views Creating a Cube Lesson 1: Developing Analysis Services

More information

Implementing a Data Warehouse with Microsoft SQL Server 2014 (20463D)

Implementing a Data Warehouse with Microsoft SQL Server 2014 (20463D) Implementing a Data Warehouse with Microsoft SQL Server 2014 (20463D) Overview This course describes how to implement a data warehouse platform to support a BI solution. Students will learn how to create

More information

OFFICIAL MICROSOFT LEARNING PRODUCT 10778A. Implementing Data Models and Reports with Microsoft SQL Server 2012 Companion Content

OFFICIAL MICROSOFT LEARNING PRODUCT 10778A. Implementing Data Models and Reports with Microsoft SQL Server 2012 Companion Content OFFICIAL MICROSOFT LEARNING PRODUCT 10778A Implementing Data Models and Reports with Microsoft SQL Server 2012 Companion Content 2 Implementing Data Models and Reports with Microsoft SQL Server 2012 Information

More information

Implementing a SQL Data Warehouse

Implementing a SQL Data Warehouse Implementing a SQL Data Warehouse Course 20767B 5 Days Instructor-led, Hands on Course Information This five-day instructor-led course provides students with the knowledge and skills to provision a Microsoft

More information

Property Default Schema Is Not Available For Database Ssis

Property Default Schema Is Not Available For Database Ssis Property Default Schema Is Not Available For Database Ssis Options properties but not really finding anything that will help. Also I tried by setting Transfer. Upload two slightly differing files into

More information

Microsoft Implementing a Data Warehouse with Microsoft SQL Server 2014

Microsoft Implementing a Data Warehouse with Microsoft SQL Server 2014 1800 ULEARN (853 276) www.ddls.com.au Microsoft 20463 - Implementing a Data Warehouse with Microsoft SQL Server 2014 Length 5 days Price $4290.00 (inc GST) Version D Overview Please note: Microsoft have

More information

MSBI Online Training (SSIS & SSRS & SSAS)

MSBI Online Training (SSIS & SSRS & SSAS) MSBI Online Training (SSIS & SSRS & SSAS) Course Content: SQL Server Integration Services Introduction Introduction of MSBI and its tools MSBI Services and finding their statuses Relation between SQL Server

More information

Implementing a Data Warehouse with Microsoft SQL Server 2014

Implementing a Data Warehouse with Microsoft SQL Server 2014 Course 20463D: Implementing a Data Warehouse with Microsoft SQL Server 2014 Page 1 of 5 Implementing a Data Warehouse with Microsoft SQL Server 2014 Course 20463D: 4 days; Instructor-Led Introduction This

More information

LABORATORY OF DATA SCIENCE. ETL Extract, Transform and Load. Data Science & Business Informatics Degree

LABORATORY OF DATA SCIENCE. ETL Extract, Transform and Load. Data Science & Business Informatics Degree LABORATORY OF DATA SCIENCE ETL Extract, Transform and Load Data Science & Business Informatics Degree BI Architecture 2 6 lessons data access 4 lessons data quality & ETL 1 lessons analytic SQL 6 lessons

More information

SQL Server and MSBI Course Content SIDDHARTH PATRA

SQL Server and MSBI Course Content SIDDHARTH PATRA SQL Server and MSBI Course Content BY SIDDHARTH PATRA 0 Introduction to MSBI and Data warehouse concepts 1. Definition of Data Warehouse 2. Why Data Warehouse 3. DWH Architecture 4. Star and Snowflake

More information

Building robust solutions, DFT (cant.) OLE DB destination, queries, source file, 563 TextFieldParser class, transformation tas

Building robust solutions, DFT (cant.) OLE DB destination, queries, source file, 563 TextFieldParser class, transformation tas Index ADO.NET connection manager editor, 90 description, 90.NET provider, 91 SqlClient connection manager editor, 92 source and destination adapters, 226 Analysis Services connection manager, 98-99 Analysis

More information

Microsoft Implementing a SQL Data Warehouse

Microsoft Implementing a SQL Data Warehouse 1800 ULEARN (853 276) www.ddls.com.au Microsoft 20767 - Implementing a SQL Data Warehouse Length 5 days Price $4290.00 (inc GST) Version C Overview This five-day instructor-led course provides students

More information

Module 2: Managing Your Resources Lesson 5: Configuring System Settings and Properties Learn

Module 2: Managing Your Resources Lesson 5: Configuring System Settings and Properties Learn Module 2: Managing Your Resources Lesson 5: Configuring System Settings and Properties Learn Welcome to Module 2, Lesson 5. In this lesson, you will learn how to use the Administration Console to configure

More information

Workspace Administrator Help File

Workspace Administrator Help File Workspace Administrator Help File Table of Contents HotDocs Workspace Help File... 1 Getting Started with Workspace... 3 What is HotDocs Workspace?... 3 Getting Started with Workspace... 3 To access Workspace...

More information

Utilizing SQL with WindMilMap

Utilizing SQL with WindMilMap Utilizing SQL with WindMilMap Presented by Eric Kirkes, GIS Support Specialist This presentation will provide basic information on how to manage a SQL database tied to your Milsoft model. Schema and structure

More information

Accurate study guides, High passing rate! Testhorse provides update free of charge in one year!

Accurate study guides, High passing rate! Testhorse provides update free of charge in one year! Accurate study guides, High passing rate! Testhorse provides update free of charge in one year! http://www.testhorse.com Exam : 70-467 Title : Designing Business Intelligence Solutions with Microsoft SQL

More information

TopView SQL Configuration

TopView SQL Configuration TopView SQL Configuration Copyright 2013 EXELE Information Systems, Inc. EXELE Information Systems (585) 385-9740 Web: http://www.exele.com Support: support@exele.com Sales: sales@exele.com Table of Contents

More information

Aggregating Knowledge in a Data Warehouse and Multidimensional Analysis

Aggregating Knowledge in a Data Warehouse and Multidimensional Analysis Aggregating Knowledge in a Data Warehouse and Multidimensional Analysis Rafal Lukawiecki Strategic Consultant, Project Botticelli Ltd rafal@projectbotticelli.com Objectives Explain the basics of: 1. Data

More information

Duration: 5 Days. EZY Intellect Pte. Ltd.,

Duration: 5 Days. EZY Intellect Pte. Ltd., Implementing a SQL Data Warehouse Duration: 5 Days Course Code: 20767A Course review About this course This 5-day instructor led course describes how to implement a data warehouse platform to support a

More information

MCSA SQL SERVER 2012

MCSA SQL SERVER 2012 MCSA SQL SERVER 2012 1. Course 10774A: Querying Microsoft SQL Server 2012 Course Outline Module 1: Introduction to Microsoft SQL Server 2012 Introducing Microsoft SQL Server 2012 Getting Started with SQL

More information

Request for Quote (RFQ)

Request for Quote (RFQ) Request for Quote (RFQ) SIMMS Inventory Management Software 8.0 March 24, 2011 Contents Request for Quote (RFQ)................ 1 Creating an RFQ................... 1 Select the Items for an RFQ............

More information

Table of Contents DATA MANAGEMENT TOOLS 4. IMPORT WIZARD 6 Setting Import File Format (Step 1) 7 Setting Source File Name (Step 2) 8

Table of Contents DATA MANAGEMENT TOOLS 4. IMPORT WIZARD 6 Setting Import File Format (Step 1) 7 Setting Source File Name (Step 2) 8 Data Management Tools 1 Table of Contents DATA MANAGEMENT TOOLS 4 IMPORT WIZARD 6 Setting Import File Format (Step 1) 7 Setting Source File Name (Step 2) 8 Importing ODBC Data (Step 2) 10 Importing MSSQL

More information

Implementing a Data Warehouse with Microsoft SQL Server 2012/2014 (463)

Implementing a Data Warehouse with Microsoft SQL Server 2012/2014 (463) Implementing a Data Warehouse with Microsoft SQL Server 2012/2014 (463) Design and implement a data warehouse Design and implement dimensions Design shared/conformed dimensions; determine if you need support

More information

Accelerated SQL Server 2012 Integration Services

Accelerated SQL Server 2012 Integration Services 1 Accelerated SQL Server 2012 Integration Services 4 Days (BI-ISACL12-301-EN) Description This 4-day instructor led training focuses on developing and managing SSIS 2012 in the enterprise. In this course,

More information

NETWRIX PASSWORD EXPIRATION NOTIFIER

NETWRIX PASSWORD EXPIRATION NOTIFIER NETWRIX PASSWORD EXPIRATION NOTIFIER ADMINISTRATOR S GUIDE Product Version: 3.3 January 2013 Legal Notice The information in this publication is furnished for information use only, and does not constitute

More information

Orchestrating Big Data Solutions with Azure Data Factory

Orchestrating Big Data Solutions with Azure Data Factory Orchestrating Big Data Solutions with Azure Data Factory Lab 3 - Scheduling and Monitoring Azure Data Factory Pipelines Overview In this lab, you will use Azure Data Factory to schedule a data pipeline

More information

Connect Databases to AutoCAD with dbconnect Nate Bartley Test Development Engineer autodesk, inc.

Connect Databases to AutoCAD with dbconnect Nate Bartley Test Development Engineer autodesk, inc. Connect Databases to AutoCAD with dbconnect Nate Bartley Test Development Engineer autodesk, inc. GD22-4 1 2 Agenda Introduction Overview of dbconnect Configure a data source Connect database to AutoCAD

More information

Orchestrating Big Data Solutions with Azure Data Factory

Orchestrating Big Data Solutions with Azure Data Factory Orchestrating Big Data Solutions with Azure Data Factory Lab 2 Creating a Pipeline Overview In this lab, you will use Azure Data Factory to implement a simple data pipeline that copies data from a file

More information

SYNTHESYS.NET INTERACTION STUDIO Database Output Actions

SYNTHESYS.NET INTERACTION STUDIO Database Output Actions SYNTHESYS.NET INTERACTION STUDIO Database Output Actions Synthesys.Net Database Output Action 1 DATABASE OUTPUT ACTION DATABASE OUTPUT ACTION WIZARD...3 Database Output Name... 3 Settings... 3 Output Type...

More information

You create project parameters to store the username and password that are used to access the FTP site.

You create project parameters to store the username and password that are used to access the FTP site. 1 Microsoft - 70-463 Implementing a Data Warehouse with Microsoft SQL Server 2012 QUESTION: 1 You are developing a project that contains multiple SQL Server Integration Services (SSIS) packages. The packages

More information

PASS4TEST. IT Certification Guaranteed, The Easy Way! We offer free update service for one year

PASS4TEST. IT Certification Guaranteed, The Easy Way!  We offer free update service for one year PASS4TEST IT Certification Guaranteed, The Easy Way! \ We offer free update service for one year Exam : 70-448 Title : TS:MS SQL Server 2008.Business Intelligence Dev and Maintenan Vendors : Microsoft

More information

Mobile Forms Integrator

Mobile Forms Integrator Mobile Forms Integrator Introduction Mobile Forms Integrator allows you to connect the ProntoForms service (www.prontoforms.com) with your accounting or management software. If your system can import a

More information

10 Minute Demonstration Script

10 Minute Demonstration Script 10 Minute Demonstration Script Table of Contents The Demo... 3 The Interface... 3 Demo Flow... 3 Capture and Indexing... 4 Searches... 6 Integration and Workflow... 8 2 P a g e The Demo Most demonstrations

More information

Orchestrating Big Data Solutions with Azure Data Factory

Orchestrating Big Data Solutions with Azure Data Factory Orchestrating Big Data Solutions with Azure Data Factory Lab 4 Transforming Data with U-SQL Note: If you prefer to transform data using Hive, an alternative version of this lab is provided in which you

More information

Perceptive Matching Engine

Perceptive Matching Engine Perceptive Matching Engine Advanced Design and Setup Guide Version: 1.0.x Written by: Product Development, R&D Date: January 2018 2018 Hyland Software, Inc. and its affiliates. Table of Contents Overview...

More information

WORKFLOW BUILDER TM FOR MICROSOFT ACCESS

WORKFLOW BUILDER TM FOR MICROSOFT ACCESS WORKFLOW BUILDER TM FOR MICROSOFT ACCESS Application Guide Version 06.05.2008 This document is copyright 2007-2008 OpenGate Software. The information contained in this document is subject to change without

More information

20767: Implementing a SQL Data Warehouse

20767: Implementing a SQL Data Warehouse Let s Reach For Excellence! TAN DUC INFORMATION TECHNOLOGY SCHOOL JSC Address: 103 Pasteur, Dist.1, HCMC Tel: 08 38245819; 38239761 Email: traincert@tdt-tanduc.com Website: www.tdt-tanduc.com; www.tanducits.com

More information

Tivoli Common Reporting V2.x. Reporting with Tivoli Data Warehouse

Tivoli Common Reporting V2.x. Reporting with Tivoli Data Warehouse Tivoli Common Reporting V2.x Reporting with Tivoli Data Warehouse Preethi C Mohan IBM India Ltd. India Software Labs, Bangalore +91 80 40255077 preethi.mohan@in.ibm.com Copyright IBM Corporation 2012 This

More information

SQL Server Reporting Services

SQL Server Reporting Services www.logicalimagination.com 800.657.1494 SQL Server Reporting Services Course #: SS-104 Duration: 3 days Prerequisites This course assumes no prior knowledge of SQL Server Reporting Services. This course

More information

Performing Administrative Tasks

Performing Administrative Tasks CHAPTER 6 This section provides information about administrative tasks. It includes these topics: Stopping and Restarting the Cisco License Manager Server, page 6-1 How to Manage Users, page 6-2 Working

More information

Extending the Scope of Custom Transformations

Extending the Scope of Custom Transformations Paper 3306-2015 Extending the Scope of Custom Transformations Emre G. SARICICEK, The University of North Carolina at Chapel Hill. ABSTRACT Building and maintaining a data warehouse can require complex

More information

Databases in Azure Practical Exercises

Databases in Azure Practical Exercises Databases in Azure Practical Exercises Overview This course includes optional exercises where you can try out the techniques demonstrated in the course for yourself. This guide lists the steps for the

More information

Analytics: Server Architect (Siebel 7.7)

Analytics: Server Architect (Siebel 7.7) Analytics: Server Architect (Siebel 7.7) Student Guide June 2005 Part # 10PO2-ASAS-07710 D44608GC10 Edition 1.0 D44917 Copyright 2005, 2006, Oracle. All rights reserved. Disclaimer This document contains

More information

Training 24x7 DBA Support Staffing. MCSA:SQL 2016 Business Intelligence Development. Implementing an SQL Data Warehouse. (40 Hours) Exam

Training 24x7 DBA Support Staffing. MCSA:SQL 2016 Business Intelligence Development. Implementing an SQL Data Warehouse. (40 Hours) Exam MCSA:SQL 2016 Business Intelligence Development Implementing an SQL Data Warehouse (40 Hours) Exam 70-767 Prerequisites At least 2 years experience of working with relational databases, including: Designing

More information

Manual Physical Inventory Upload Created on 3/17/2017 7:37:00 AM

Manual Physical Inventory Upload Created on 3/17/2017 7:37:00 AM Created on 3/17/2017 7:37:00 AM Table of Contents... 1 Page ii Procedure After completing this topic, you will be able to manually upload physical inventory. Navigation: Microsoft Excel > New Workbook

More information

SQL Server Integration Services

SQL Server Integration Services ETL Development with SQL Server Integration Services Overview This purpose of this lab is to give you a clear picture of how ETL development is done using an actual ETL tool. The tool we will use is called

More information

$99.95 per user. SQL Server 2005 Integration Services CourseId: 153 Skill level: Run Time: 31+ hours (162 videos)

$99.95 per user. SQL Server 2005 Integration Services CourseId: 153 Skill level: Run Time: 31+ hours (162 videos) Course Description This popular LearnItFirst.com course is one of our most popular courses. Master trainer Scott Whigham takes you through the steps you need to migrate data to and fro. You ll learn package

More information

Step by Step SQL Server Alerts and Operator Notifications

Step by Step SQL Server Alerts and  Operator Notifications Step by Step SQL Server Alerts and Email Operator Notifications Hussain Shakir LinkedIn: https://www.linkedin.com/in/mrhussain Twitter: https://twitter.com/hshakir_ms Blog: http://mstechguru.blogspot.ae/

More information

[MS-DPIS]: Integration Services Data Portability Overview. Intellectual Property Rights Notice for Open Specifications Documentation

[MS-DPIS]: Integration Services Data Portability Overview. Intellectual Property Rights Notice for Open Specifications Documentation [MS-DPIS]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation ( this documentation ) for protocols,

More information

Connecting SQL Data Sources to Excel Using Windward Studios Report Designer

Connecting SQL Data Sources to Excel Using Windward Studios Report Designer Connecting SQL Data Sources to Excel Using Windward Studios Report Designer Welcome to Windward Studios Report Designer Windward Studios takes a unique approach to reporting. Our Report Designer sits directly

More information

Looping through a collection of SQL tables using the SSIS Foreach Loop Container

Looping through a collection of SQL tables using the SSIS Foreach Loop Container Looping through a collection of SQL tables using the SSIS Foreach Loop Container Introduction A lady named Barbara read my SSIS Foreach Loop Container doc and asked how to use the same container to perform

More information

Using PI OLEDB Enterprise Page 1

Using PI OLEDB Enterprise Page 1 Using PI OLEDB Enterprise 2010 Page 1 1.1 Using PI OLEDB Enterprise 2010 1.1.1 Objectives At the end of this learning lab, you should be able to: Explain what PI OLEDB Enterprise 2010 is. Explain how it

More information

SQL SERVER Interview Questions & Answers - SET 5 (10 Questions)

SQL SERVER Interview Questions & Answers - SET 5 (10 Questions) SQL SERVER Interview Questions & Answers - SET 5 (10 Questions) http://msbiskills.com/ 1. Can we put table data and Clustered index on different file groups? No it s not possible. If a table has a clustered

More information

MICROSOFT BUSINESS INTELLIGENCE (MSBI: SSIS, SSRS and SSAS)

MICROSOFT BUSINESS INTELLIGENCE (MSBI: SSIS, SSRS and SSAS) MICROSOFT BUSINESS INTELLIGENCE (MSBI: SSIS, SSRS and SSAS) Microsoft's Business Intelligence (MSBI) Training with in-depth Practical approach towards SQL Server Integration Services, Reporting Services

More information

Choosing the Right Tool for the Job

Choosing the Right Tool for the Job Getting Started This book is about applications. Specifically, this book is about applying the functionality of SQL Server 2005 Integration Services (SSIS) to help you envision, develop, and implement

More information

To access Contacts view, locate and select the Contacts View tab in the lower-left corner of the screen. Contacts view will appear.

To access Contacts view, locate and select the Contacts View tab in the lower-left corner of the screen. Contacts view will appear. Outlook 2010 Managing Contacts Introduction Contacts view is the central place for all your contacts in Outlook 2010. Maintaining a detailed contacts list will make sending emails and scheduling meetings

More information

University of North Dakota PeopleSoft Finance Tip Sheets. Utilizing the Query Download Feature

University of North Dakota PeopleSoft Finance Tip Sheets. Utilizing the Query Download Feature There is a custom feature available in Query Viewer that allows files to be created from queries and copied to a user s PC. This feature doesn t have the same size limitations as running a query to HTML

More information

CRD - Crystal Reports Scheduler. Software Features. This document only outlines the main features of CRD

CRD - Crystal Reports Scheduler. Software Features. This document only outlines the main features of CRD CRD - Crystal Reports Scheduler Software Features This document only outlines the main features of CRD please contact us to arrange a demo to see every feature in action. Call +1 888 781 8966 or email

More information

ACTIVANT. Prophet 21 ACTIVANT PROPHET 21. New Features Guide Version 11.0 ADMINISTRATION NEW FEATURES GUIDE (SS, SA, PS) Pre-Release Documentation

ACTIVANT. Prophet 21 ACTIVANT PROPHET 21. New Features Guide Version 11.0 ADMINISTRATION NEW FEATURES GUIDE (SS, SA, PS) Pre-Release Documentation I ACTIVANT ACTIVANT PROPHET 21 Prophet 21 ADMINISTRATION NEW FEATURES GUIDE (SS, SA, PS) New Features Guide Version 11.0 Version 11.5 Pre-Release Documentation This manual contains reference information

More information

OLAP and Data Warehousing

OLAP and Data Warehousing OLAP and Data Warehousing Lab Exercises Part I OLAP Purpose: The purpose of this practical guide to data warehousing is to learn how online analytical processing (OLAP) methods and tools can be used to

More information

Audience Profile This course is intended for novice users of Microsoft Dynamics AX. Students must have basic Microsoft Windows navigation skills.

Audience Profile This course is intended for novice users of Microsoft Dynamics AX. Students must have basic Microsoft Windows navigation skills. Introduction to Microsoft Dynamics AX 2009 Course 80020A: 2 Days; Instructor-Led About this Course This two-day instructor-led course provides students with the knowledge and skills to maneuver within

More information

Index. AcquireConnection method, 207 Advanced Editor, 259 AndyWeather.com, 275

Index. AcquireConnection method, 207 Advanced Editor, 259 AndyWeather.com, 275 Index A AcquireConnection method, 207 Advanced Editor, 259 AndyWeather.com, 275 B Biml2014, 344 Business intelligence (BI), 343 Business Intelligence Development Studio (BIDS), 28, 262 Business Intelligence

More information

6+ years of experience in IT Industry, in analysis, design & development of data warehouses using traditional BI and self-service BI.

6+ years of experience in IT Industry, in analysis, design & development of data warehouses using traditional BI and self-service BI. SUMMARY OF EXPERIENCE 6+ years of experience in IT Industry, in analysis, design & development of data warehouses using traditional BI and self-service BI. 1.6 Years of experience in Self-Service BI using

More information

Contents About This Guide... 5 About Notifications... 5 Managing User Accounts... 6 Managing Companies Managing Password Policies...

Contents About This Guide... 5 About Notifications... 5 Managing User Accounts... 6 Managing Companies Managing Password Policies... Cloud Services Identity Management Administration Guide Version 17 July 2017 Contents About This Guide... 5 About Notifications... 5 Managing User Accounts... 6 About the User Administration Table...

More information

IS L02-MIGRATING TO SEP 12.1

IS L02-MIGRATING TO SEP 12.1 IS L02-MIGRATING TO SEP 12.1 Description Migrating to Symantec Endpoint Protection (SEP)? Want to upgrade to the latest SEP technology? In this Lab, see how to upgrade a multi-site Symantec Endpoint Protection

More information

SQL Server 2005: Reporting Services

SQL Server 2005: Reporting Services SQL Server 2005: Reporting Services Table of Contents SQL Server 2005: Reporting Services...3 Lab Setup...4 Exercise 1 Creating a Report Using the Wizard...5 Exercise 2 Creating a List Report...7 Exercise

More information

After completing this course, participants will be able to:

After completing this course, participants will be able to: Designing a Business Intelligence Solution by Using Microsoft SQL Server 2008 T h i s f i v e - d a y i n s t r u c t o r - l e d c o u r s e p r o v i d e s i n - d e p t h k n o w l e d g e o n d e s

More information

User Manual. Admin Report Kit for Exchange Server

User Manual. Admin Report Kit for Exchange Server User Manual Admin Report Kit for Exchange Server Table of Contents 1 About ARKES-Admin Report Kit for Exchange Server 1 1.1 System requirements 2 1.2 How to activate the software? 3 1.3 ARKES Reports Primer

More information

User Manual. Active Directory Change Tracker

User Manual. Active Directory Change Tracker User Manual Active Directory Change Tracker Last Updated: March 2018 Copyright 2018 Vyapin Software Systems Private Ltd. All rights reserved. This document is being furnished by Vyapin Software Systems

More information

Contents Using the Primavera Cloud Service Administrator's Guide... 9 Web Browser Setup Tasks... 10

Contents Using the Primavera Cloud Service Administrator's Guide... 9 Web Browser Setup Tasks... 10 Cloud Service Administrator's Guide 15 R2 March 2016 Contents Using the Primavera Cloud Service Administrator's Guide... 9 Web Browser Setup Tasks... 10 Configuring Settings for Microsoft Internet Explorer...

More information