Book Image

Microsoft SQL Server 2014 Business Intelligence Development Beginner's Guide

By : Abolfazl Radgoudarzi, Reza Rad
Book Image

Microsoft SQL Server 2014 Business Intelligence Development Beginner's Guide

By: Abolfazl Radgoudarzi, Reza Rad

Overview of this book

Table of Contents (19 chapters)
Microsoft SQL Server 2014 Business Intelligence Development Beginner's Guide
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Time for action – a subscription view


In this example, we will export product entity records into the SQL Server database table. We will create a subscription view for the product entity and use SSIS to export data rows.

  1. Open the MDS WebUI and go to Integration Management.

  2. Go to the Create Views menu item and click on the Add button.

  3. Set the subscription view name as VwProduct, then choose PacktPub_BI_Model as the model, and choose Version_1 as the version. Choose the Product entity and set the format as Leaf members. Click on the Save icon to save the changes made in the Create Subscription View window, as shown in the following screenshot:

  4. Open SSDT and create an SSIS project; name it Subscription View.

  5. Create a Data Flow task. Inside the Data Flow task, create an OLE DB source.

  6. Create a connection to the MDS database from the OLE DB source.

  7. In the OLE DB source, set the data access mode as Table or View. Choose mdm.VwProduct as the name of the view. Preview the data rows and then click on OK...