Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2008 Forums
 SSIS and Import/Export (2008)
 Best Practice for SSIS

Author  Topic 

ShorePatrol
Starting Member

4 Posts

Posted - 2013-01-18 : 14:58:06
Hi Folks,

We used to only have 1 production SQL 2008 R2 server - so all SSIS packages were developed ON that server....probably not best practice.

I was able to convince my Director that we needed a development, or staging server for SQL - I got it!

So now I am developing SSIS packages on the SQL development server - cool! But now I'm wondering what the next step is...

I think I have two choices:

1) Use the development server to run the SSIS packages on - including for production databases on the production server - probably not best practice

2) Deploy the packages to the production server and run them from there - probably best practice...?

And then that begs my next question - a package developed on "DEV" and deployed to "PROD" won't work anymore, since the package was developed on a different server, all the pointers, etc would be different...? So what's the best practice for deploying an SSIS package from a DEV server to PROD after it's working on DEV?

I've never deployed a package to a different server before because they were always created on production. I've heard of "dynamic" packages, but don't really know what that means...

Any help appreciated.

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2013-01-19 : 02:36:49
you should be developing and test running the packages in DEV server and then once happy you should deploy them to PROD server.
The properties of connections, variables etc can be made dynamic using package connections.

See

http://www.sqlis.com/sqlis/post/Easy-Package-Configuration.aspx

------------------------------------------------------------------------------------------------------
SQL Server MVP
http://visakhm.blogspot.com/

Go to Top of Page

James K
Master Smack Fu Yak Hacker

3873 Posts

Posted - 2013-01-19 : 06:15:12
This article by Robert Sheldon is another good read. I have found that Robert Sheldon's articles are usually very lucid and clear. http://www.simple-talk.com/sql/ssis/xml-configuration-files-in-sql-server-integration-services/

You may find this tutorial useful - discusses deployment options http://www.mssqltips.com/sqlservertutorial/213/deploying-ssis-packages/
Go to Top of Page

ShorePatrol
Starting Member

4 Posts

Posted - 2013-01-21 : 07:20:06
Really good info guys - thank you!
Go to Top of Page
   

- Advertisement -