Configuration
DTExec
DTExec has a million things you can do with it and Configurations are something you definitely want to take a look at
To get you started have a look here
Start | Run | DTExecUI
Books Online is always good.
Our friend jamie has written a "Starter for 10" article here
Easy Package Configuration
(http://www.sqlis.com/default.aspx?26)
In the October/Novemeber edition of SQL Server statndard Magazine i hope to have an article on configurations as well.
Allan
[Apologies on behalf of my internal IT department if there is a fault with this link. They've been promising to move us to a new blogging engine where this won't happen for about 6 months now and still nada. Hopefully the link will work]
-Jamie
I have implemented this thing now. I set up User Variables at the Package Level which are even available at the Data Flow Level. Used these variables there. And used the following command to pass variables at the run time.
"C:\Program Files\Microsoft SQL Server\90\DTS\Binn\DTExec.exe" /f "C:\Program Files\SSIS\GetName.dtsx" /set \package.variables[CustName].Value;"Suresh" /set \package.variables[CustSex].Value;"M" \package.variables[CustAddress].Value;"Bangalore, India"
It runs great. Thanks all.
-Jamie