http://www.sqlservercentral.com/articles/Integration+Services+(SSIS)/99287/
An SSIS ETL package created with the Import/Export Wizard will process one data file at a time. There may be situations, however, when multiple data files will be arriving continuously for extraction to the same table. A base SSIS package generated using the Import/Export Wizard can be modified to process these files in batch mode.
In this tutorial we will take an SSIS package generated by the Import/Export wizard and modify it to process multiple files and move those files to a backup directory.
1: Download the tutorial files
The zip file attached to this tutorial contains a default SSIS package (BaseBatchETL.dtsx) generated by the Import/Export Wizard, the same SSIS package modified to process multiple files in batch mode (BatchETL.dtsx), a SQL script (CreateCustomersTable.sql) for generating the ETL destination table, and six data files (NewCustomersXX.txt) for extraction into the destination table.
2: Create the destination table with the CreateCustomersTable.sql script
Open the CreateCustomersTable.sql script in SQL Server Management Studio.
USE [TestDB] GO /****** Object: Table [dbo].[customers] Script Date: 05/10/2013 15:46:30 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[customers]( [FirstName] [nvarchar](100) NULL, [LastName] [nvarchar](100) NULL, [Company] [nvarchar](100) NULL, [Address] [nvarchar](100) NULL, [City] [nvarchar](100) NULL, [County] [nvarchar](100) NULL, [State] [nvarchar](100) NULL, [ZIP] [nvarchar](100) NULL, [Phone] [nvarchar](100) NULL, [Fax] [nvarchar](100) NULL, [Email] [nvarchar](100) NULL, [Web] [nvarchar](100) NULL ) ON [PRIMARY] GO
Execute the script to create the destination table.
Browse to the new table to confirm that it was created.
3: Create source and backup folders and place the data files in the source folder
Create the folders C:\BatchETL and C:\BatchETL\backup and copy the six data files to the C:\BatchETL folder.
4: Open, configure and execute BaseBatchETL.dtsx in Business Intelligence Development Studio
Open the BaseBatchETL.dtsx SSIS package in BIDS to show that it consists of a Data Flow Task generated by the Import/Export Wizard.
Double-click the DestinationConnectionOLEDB connection manager to bring up the Connection Manager configuration panel, change the server and database names to the server and database where you created the customers table and click the OK button.
Double-click on the SourceConnectionFlatFile connection manager to show that the connection manager is pointing to the NewCustomers01 data file in the C:\BatchETL\ folder.
Execute the BaseBatchETL package.
Confirm that the 5000 records in the NewCustomers01.txt file have been added to the customers table.
Truncate the customers table to prepare for execution of the BatchETL.dtsx package we will create from the BaseBatchETL.dtsx package.
No comments:
Post a Comment