views:

474

answers:

6

what is the best place to start learning about SQL Server 2005 Integration services?

I'm looking for links for setup and tutorials on how to get started. I've read I need a toolkit called SSIS designer however I haven't been able to find it on the SQL Server Enterprise ed dvd nor online anywhere. I did come across some links in various forums but they are now broken.

+1  A: 

I liked the well written tutorial at http://www.accelebrate.com/sql_training/ssis_tutorial.htm give it a try.

Underlines
+3  A: 

What version of SQL Server are you using? If you're using SQL Server 2000, then you're out of luck: SSIS didn't exist back then, and you don't want to know what did.

SSIS is sufficiently rich and complicated that I would not recommend a "tutorial". I'm afraid I have to recommend you read a book (and follow the exercises!). The one that taught me was Microsoft® SQL Server(TM) 2005 Integration Services Step by Step.

You want to install Business Intelligence Studio from the SQL Server DVD. That installs Visual Studio if you didn't already have it, and also installs the templates and tools necessary to develop in SSIS.

John Saunders
i'm using sql server 2005. thanks, i'll check that out.
phill
You definitely need this book. Lots of good stuff.
Sam
A: 

Once you get past the basics, this tutorial/example shows how to use looping, variables and expressions to do some cool stuff: http://www.sqlmag.com/Articles/ArticleID/95385/pg/3/3.html

The example is aimed at administration and monitoring, but can be applied to many things.

Looks like it's subscriber only now, but you can get the source.

In a nutshell, you store servernames is a table, put them in an 'object' variable and then loop through them performing whatever actions you'd like.

Your connection to 'source server' changes based on expressions you define in the properties window.

Sam
A: 

I'd suggest you look at SQLIS.com, it's a great site written by some SSIS experts. There are a number of blogs, and we have some articles at SQLServerCentral.com, though not sure we have a good "get started" series.

PragmaticWorks does a lot of SSIS and I've started to see some details on their blog about the various tasks.

way0utwest
+1  A: 

I've found lots of good info at SSIS Junkie (http://blogs.conchango.com/jamiethomson/).

And MS has some interesting web casts.

CTKeane
A: 

IF you are working on a Business Intelligence project I suggest the white-papers from www.SQLBI.com for reference. If you understand the basic termonology of standard BI practicies, this will present a good set of best practices. It may be a little complex though if you are just starting out.

I have also found the video training provided by vconferenceonline/SSWUG (http://www.vconferenceonline.com/shows/summer09/uvc/sessions.asp?id=2) to be very useful. Not free - but relatively cheap.

Sangheili