Practical No: 2B Perform The Extraction Transformation and Loading (ETL) Process To Construct The Database in The SQL Server
Practical No: 2B Perform The Extraction Transformation and Loading (ETL) Process To Construct The Database in The SQL Server
Practical No: 2B Perform The Extraction Transformation and Loading (ETL) Process To Construct The Database in The SQL Server
Perform the Extraction Transformation and Loading (ETL) process to construct the
database in the SQL server.
Software requirements: SQL SERVER 2012 FULL VERSION (SQLServer2012SP1-FullSlipstream-ENU-x86)
Step 1: Open SQL Server Management Studio to restore backup file
Now set the server name and select the authentication type as shown below and click on “Connect”:
Step 6 : Click ok and in select backup devices window Add both files of AdventureWorks
Step 7: Open SQL Server Data Tools Select File → New → Project → Business Intelligence → Integration
Services Project & give appropriate project name.
Step 11: Select Server name(as per your machine) from drop down and database name and click on Test
connection.
Step 14: Drag OLE DB Source from Other Sources and drop into Data Flow tab
Step 15: Double click on OLE DB source → OLE DB Source Editor appears→ click on New to add connection
manager. Select [Sales].[Store] table from drop down → ok
Step 16: Drag ole db destination in data flow tab and connect both
Step 17: Double click on OLE DB destination Click on New to run the query to get [OLE DB Destination] in
Name of the table or the view.
Click on ok
Step 18: Click on start
Step 19: Go to SQL Server Management Studio In database tab → Adventureworks → Right click on [dbo].[OLE
DB Destination] → Scrip Table as → SELECT To → New Query Editor Window
Step 20: Execute following query to get output.
USE [AdventureWorks2012]
GO
SELECT [BusinessEntityID]
,[Name]
,[SalesPersonID]
,[Demographics]
,[rowguid]
,[ModifiedDate]
FROM [dbo].[OLE DB Destination]
GO