TechRepublic : A ZDNet Tech Community

Servers and Storage

Host: Mary Weilage
Contact

Integration Services, which replaces Data Transformation Services (DTS) in SQL Server 2005, is a wonderful tool for extracting, transforming, and loading data. Common uses for Integration Services include: loading data into the database; changing data into to or out from your relational database structures; loading your data warehouse data; and taking data out of your database and moving it to other databases or types of storage. This article describes how you can use the new features of SQL Server 2005 Integration Services (SSIS) to load an Excel file into your database.

Note: There are several wizards that come with SQL Server Management Studio to aid you in the import and export of data into and out of your database. I will not look at those wizards; I will focus on how you can build a package from scratch so that you don’t have to rely on the wizards.

To begin the process, I open SQL Server Business Intelligence (BI) Development Studio, a front-end tool that is installed when you install SQL Server 2005. The BI Development Studio is a scaled down version of Visual Studio. Then I select New Integration Services Project and give the project a name. See Figure A.

Figure A

Figure A

When the project opens, you will see an environment that may look familiar to you if you have used SQL Server DTS; some of the items of the toolbox are the same. For the purposes of this project, I am interested in dragging the Data Flow task item from the toolbar into the Control Flow tab. (The idea of a Data Flow task is one of the major differences between DTS and SSIS packages. In an SSIS package, you can control the manner in which your package logic flows inside of the Control Flow tab. When you need to manage the data aspects of your project, you will use the Data Flow task. You can have several different Data Flow tasks in your project — all of which will reside inside the Control Flow tab.) See Figure B.

Figure B

Figure B

Double-click the Data Flow task that you have dragged onto the Control Flow tab. The available options in the Toolbar have changed; I now have available Data Flow Sources, Data Flow Destinations, and Data Flow Transformations. Since I am going to import an Excel file into the database, I will drag the Excel Source item from the Toolbar onto the screen. See Figure C.

Figure C

Figure C

The Excel Source item represents an Excel file that I will import from somewhere on my network. Now I need somewhere to put the data. Since my plan is to put the data into the database, I will need a Data Flow Destination. For the purposes of this example, I will choose SQL Server Destination from the Data Flow Destination portion of the toolbar and drag it onto my Data Flow tab. See Figure D.

Figure D

Figure D

To designate which Excel file I want to import, I double-click the Excel Source item that I moved onto the screen. From there, I find the Excel file on the network that I want to import. See Figure E.

Figure E

Figure E

I also need to designate the sheet from the Excel file that I want to import, along with the columns from the sheet that I want to use. Figures F and G depict these options.

Figure F

Figure F

Figure G

Figure G

Now that I have defined my Excel source, I need to define my SQL Server destination. Before doing that, I need to indicate the Data Flow Path from the Excel file to the SQL Server destination; this will allow me to use the structure of the data defined in the Excel Source to model my SQL Server table that I will import the data into. To do this, I click the Excel Source item and drag the green arrow onto the SQL Server Destination item. See Figure H.

Figure H

Figure H

To define the database server and database to import the data, double-click the SQL Server Destination item. I will define the server in which I will import the data, along with the database that the data will reside. See Figure I.

Figure I

Figure I

I also need to define the table that I will insert the Excel data into. I will create a new table named SalesHistoryExcelData. See Figure J.

Figure J

Figure J

Under the Mappings section, I define the relationship between the Input Columns (the Excel data) and the Destination Columns (my new SQL Server table). See Figure K.

Figure K

Figure K

Once I successfully define the inputs and outputs, my screen will look like the one below. All I need to do now is run the package and import the data into the new table by clicking the green arrow in the top-middle of the screen, which executes my package. See Figure L.

Figure L

Figure L

Figure M shows that my package has successfully executed and that 30,000 records from my Excel Source item have been transferred to my SQL Server destination.

Figure M

Figure M

You can download the Excel file I used for this article.  

Tasks in SSIS packages

Importing and exporting data are some of the simplest, most useful tasks to accomplish in SQL Server. However, there are literally hundreds of other tasks that can easily be accomplished in SSIS packages that will take a significant amount of time to do by a different means. I plan to take a look at several more of these tasks in future articles.

Tim Chapman a SQL Server database administrator and consultant who works for a bank in Louisville, KY. Tim has more than eight years of IT experience, and he is a Microsoft certified Database Developer and Administrator. If you would like to contact Tim, please e-mail him at chapman.tim@gmail.com.
—————————————————————————————–

Get SQL tips in your inbox
TechRepublic’s free SQL Server newsletter, delivered each Tuesday, contains hands-on tips that will help you become more adept with this powerful relational database management system. Automatically subscribe today!

Tim ChapmanTim Chapman is a SQL Server MVP, a database architect, and an administrator who works as an independent consultant in Raleigh, NC, and has more than nine years of IT experience. If you would like to contact Tim, please e-mail him at chapman.tim@gmail.com or contact him through his Web site, SQL Server Nation.

Print/View all Posts Comments on this blog

Nice article gay iatanasov@... | 10/09/07
fantastic ! Grant Russel | 10/09/07
Absolutely chapman.tim@... | 10/09/07
Nice article tv_p@... | 10/09/07
Dynamic Import? bill.bowman@... | 10/09/07
Save and Schedule slawrence | 10/09/07
Job chapman.tim@... | 10/09/07
How? micaman@... | 07/14/08
Kinda Different chapman.tim@... | 10/09/07
different worksheets frosenberg@... | 10/09/07
Definetly chapman.tim@... | 10/09/07
Permissions BOUND4DOOM | 10/09/07
sa chapman.tim@... | 10/09/07
RE: How to import an Excel file into SQL Server 2005 using Integration Services artmontz@... | 10/09/07
They're coming chapman.tim@... | 10/09/07
RE: How to import an Excel file into SQL Server 2005 using Integration Services danejol@... | 10/10/07
RE: How to import an Excel file into SQL Server 2005 using Integration Services MyEmail@... | 10/22/07
RE: How to import an Excel file into SQL Server 2005 using Integration Services katkarvaishali@... | 10/23/07
RE: How to import an Excel file into SQL Server 2005 using Integration Serv phuiberts@... | 10/26/07
Having a problem with this! Benslein@... | 01/07/08
Error while importing dspeer@... | 02/21/08
Does not work properly with mixed types gabriel.defigueiredo@... | 02/26/08
RE: How to import an Excel file into SQL Server 2005 using Integration Services lbseong@... | 04/01/08
RE: How to import an Excel file into SQL Server 2005 using Integration Services pareshpmahadik@... | 04/01/08
very helpful... ptk921@... | 05/20/08
RE: How to import an Excel file into SQL Server 2005 using Integration Services priya.10@... | 08/26/08
got error : : please give me solution coder.anil@... | 11/14/08
Can you create new table on the fly dbhudia@... | 01/14/09
RE: How to import an Excel file into SQL Server 2005 using Integration Services shiv_dsnair@... | 01/15/09
i would like to know how to run the SSIS from SQL Server Agent deepak_p@... | 02/26/09
RE: How to import an Excel file into SQL Server 2005 using Integration Services rk325 | 06/14/09
Dynamic Excel Source file manub22 | 08/24/09
RE: How to import an Excel file into SQL Server 2005 using Integration Serv Hugonne | 10/08/09
RE: How to import an Excel file into SQL Server 2005 using Integration Services dinesh@... | 10/27/09

What do you think?

White Papers, Webcasts, and Downloads

Recent Entries

TR on Twitter

Archives

TechRepublic Blogs



500 Things Every Technology Professional Needs to Know
Did you know Microsoft's RegClean does not work with XP but you can use shareware to clean your registry? Did you know most wireless access points don't have encryption enabled by default? Did you know there are 500 tidbits of information contained in TechRepublic's 500 Things Every Technology Professional Needs to Know that will help you become a successful IT professional.
Buy Now
Quick Reference: Linux Commands
Reduce stress and speed up resolutions with the easiest command references right at your fingertips. You'll receive a PDF file covering Linux, packed with the most common commands you'll need and use daily.
Buy Now

SmartPlanet

Click Here