Step 1: Create a new Integration Services project
- Launch Visual Studio 2015.
- On the File menu, select New | Project.
- Navigate to the Installed | Templates | Business Intelligence | Integration Services project types.
- Select Integration Services Project. Provide values for Name and Location, and then selectOK.
Visual Studio opens and creates a new Integration Services (SSIS) project. Then Visual Studio opens the designer for the single new SSIS package (Package.dtsx) in the project. You see the following screen areas:
- On the left, the Toolbox of SSIS components.
- In the middle, the design surface, with multiple tabs. You typically use at least the Control Flow and the Data Flow tabs.
- On the right, the Solution Explorer and the Properties panes.
Step 2: Create the basic data flow
- Drag a Data Flow Task from the Toolbox to the center of the design surface (on theControl Flow tab).
- Double-click the Data Flow Task to switch to the Data Flow tab.
- From the Other Sources list in the Toolbox, drag an ADO.NET Source to the design surface. With the source adapter still selected, change its name to SQL Server source in theProperties pane.
- From the Other Destinations list in the Toolbox, drag an ADO.NET Destination to the design surface under the ADO.NET Source. With the destination adapter still selected, change its name to SQL DW destination in the Properties pane.
Step 3: Configure the source adapter
- Double-click the source adapter to open the ADO.NET Source Editor.
- On the Connection Manager tab of the ADO.NET Source Editor, click the New button next to the ADO.NET connection manager list to open the Configure ADO.NET Connection Manager dialog box and create connection settings for the SQL Server database from which this tutorial loads data.
- In the Configure ADO.NET Connection Manager dialog box, click the New button to open the Connection Manager dialog box and create a new data connection.
- In the Connection Manager dialog box, do the following things.
- For Provider, select the SqlClient Data Provider.
- For Server name, enter the SQL Server name.
- In the Log on to the server section, select or enter authentication information.
- In the Connect to a database section, select the AdventureWorks sample database.
- Click Test Connection.
- In the dialog box that reports the results of the connection test, click OK to return to the Connection Manager dialog box.
- In the Connection Manager dialog box, click OK to return to the Configure ADO.NET Connection Manager dialog box.
- In the Configure ADO.NET Connection Manager dialog box, click OK to return to theADO.NET Source Editor.
- In the ADO.NET Source Editor, in the Name of the table or the view list, select theSales.SalesOrderDetail table.
- Click Preview to see the first 200 rows of data in the source table in the Preview Query Results dialog box.
- In the Preview Query Results dialog box, click Close to return to the ADO.NET Source Editor.
- In the ADO.NET Source Editor, click OK to finish configuring the data source.
Step 4: Connect the source adapter to the destination adapter
- Select the source adapter on the design surface.
- Select the blue arrow that extends from the source adapter and drag it to the destination editor until it snaps into place.In a typical SSIS package, you use a number of other components from the SSIS Toolbox in between the source and the destination to restructure, transform, and cleanse your data as it passes through the SSIS data flow. To keep this example as simple as possible, we’re connecting the source directly to the destination.
Step 5: Configure the destination adapter
- Double-click the destination adapter to open the ADO.NET Destination Editor.
- On the Connection Manager tab of the ADO.NET Destination Editor, click the New button next to the Connection manager list to open the Configure ADO.NET Connection Manager dialog box and create connection settings for the Azure SQL Data Warehouse database into which this tutorial loads data.
- In the Configure ADO.NET Connection Manager dialog box, click the New button to open the Connection Manager dialog box and create a new data connection.
- In the Connection Manager dialog box, do the following things.
- For Provider, select the SqlClient Data Provider.
- For Server name, enter the SQL Data Warehouse name.
- In the Log on to the server section, select Use SQL Server authentication and enter authentication information.
- In the Connect to a database section, select an existing SQL Data Warehouse database.
- Click Test Connection.
- In the dialog box that reports the results of the connection test, click OK to return to the Connection Manager dialog box.
- In the Connection Manager dialog box, click OK to return to the Configure ADO.NET Connection Manager dialog box.
- In the Configure ADO.NET Connection Manager dialog box, click OK to return to theADO.NET Destination Editor.
- In the ADO.NET Destination Editor, click New next to the Use a table or view list to open the Create Table dialog box to create a new destination table with a column list that matches the source table.
- In the Create Table dialog box, do the following things.
- Change the name of the destination table to SalesOrderDetail.
- Remove the rowguid column. The uniqueidentifier data type is not supported in SQL Data Warehouse.
- Change the data type of the LineTotal column to money. The decimal data type is not supported in SQL Data Warehouse. For info about supported data types, see CREATE TABLE (Azure SQL Data Warehouse, Parallel Data Warehouse).
- Click OK to create the table and return to the ADO.NET Destination Editor.
- In the ADO.NET Destination Editor, select the Mappings tab to see how columns in the source are mapped to columns in the destination.
- Click OK to finish configuring the data source.
Step 6: Run the package to load the data
Run the package by clicking the Start button on the toolbar or by selecting one of the Runoptions on the Debug menu.
As the package begins to run, you see yellow spinning wheels to indicate activity as well as the number of rows processed so far.
When the package has finished running, you see green check marks to indicate success as well as the total number of rows of data loaded from the source to the destination.
No comments:
Post a Comment