MSSQLTips.com - your daily source for SQL Server tips

Google
 
Web mssqltips.com

ESSENTIALS: Home | Tips | Search | Categories | Top 10 | Products | Authors | Blogs | Forums | Webcasts | Advertise | About
Using SQL Server Package Configuration with SQL Server Integration Services (SSIS) Packages - MSSQLTips

MSSQLTips

MSSQLTips.com - your daily source for SQL Server tips
Welcome to MSSQLTips Sign in | Join | Help
in Search

Using SQL Server Package Configuration with SQL Server Integration Services (SSIS) Packages

Last post 08-24-2008 7:17 AM by raybarley. 7 replies.
Page 1 of 1 (8 items)
Sort Posts: Previous Next
  • 01-04-2008 9:46 AM

    Using SQL Server Package Configuration with SQL Server Integration Services (SSIS) Packages

    This post is related to this tip: Using SQL Server Package Configuration with SQL Server Integration Services (SSIS) Packages

    http://www.mssqltips.com/tip.asp?tip=1405

  • 01-22-2008 12:27 PM In reply to

    Re: Using SQL Server Package Configuration with SQL Server Integration Services (SSIS) Packages

    It was a great article.  How do I deploy to a test server though?  Do I need to create the SSISConfig database in the test server?  What do I need to do to get the values into the test server?  Sorry, but I am very new to this.  I saw examples for deploying using XML files, but not for SQL Server package. 

    Filed under:
  • 01-22-2008 5:49 PM In reply to

    Re: Using SQL Server Package Configuration with SQL Server Integration Services (SSIS) Packages

    You would generally want a separate configuration database for environment - development, test/QA, and production.  The reason is that your SSIS packages will need different configuration values in each environment, particularly database connection strings.

    Let's assume that you start by creating a configuration database in your development environment.  Create a new SSIS package and start adding SQL Server package configurations.  The values will be saved to the SQL Server table that you specify when you define each package configuration.  When you are ready to setup your test environment you want to copy the SQL Server table from development to test.  I open the table in SQL Server Management Studio and copy/paste the rows into an Excel spreadsheet.  Then script out the table, create it in the database on the test server, then copy/paste the values from the Excel spreadsheet into the table, again opening the table in SQL Server Management Studio.  You could use bcp to copy the table or even write an SSIS package to do it.

  • 01-22-2008 6:21 PM In reply to

    Re: Using SQL Server Package Configuration with SQL Server Integration Services (SSIS) Packages

     Thanks. I guess it is a bit manual and this was exactly what I was looking for. I will test it tomorrow.

  • 01-25-2008 3:02 PM In reply to

    Re: Using SQL Server Package Configuration with SQL Server Integration Services (SSIS) Packages

    looks great but i was wondering if you have any artical about xml file configuration which has all the variables so the parent and child packages can get the values from .dtsconfig file.

    Thanks

    Derek

  • 01-25-2008 5:54 PM In reply to

    Re: Using SQL Server Package Configuration with SQL Server Integration Services (SSIS) Packages

    There has not been a tip published on the XML config files yet.

  • 08-18-2008 3:56 AM In reply to

    • reneep
    • Top 500 Contributor
    • Joined on 08-18-2008
    • Posts 1

    Re: Using SQL Server Package Configuration with SQL Server Integration Services (SSIS) Packages

    This is how to do XML config:

    http://www.sqlis.com/26.aspx

  • 08-24-2008 7:17 AM In reply to

    Re: Using SQL Server Package Configuration with SQL Server Integration Services (SSIS) Packages

    There is also a tip on using XML package configuration on MSSQLTips here: http://www.mssqltips.com/tip.asp?tip=1434

     

Page 1 of 1 (8 items)