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.
Author |
Topic |
varalakshmi
Yak Posting Veteran
98 Posts |
Posted - 2011-10-31 : 07:30:21
|
HiI have to call an SSIS job from a stored procedure.I have to pass variable values based on which I have to change my source query.The package also should get runtime parameter for email id to enable the package to send email.Is it possible without using package configuration tables / files.Thanks in advance. |
|
nigelrivett
Master Smack Fu Yak Hacker
3385 Posts |
Posted - 2011-10-31 : 07:39:39
|
Have a look at the dtexec statement. It allows you to set variables before the execution and can be run using xp_cmdshell.You can also set the email ID if known at that time - otherwise retrieve it in the package.==========================================Cursors are useful if you don't know sql.SSIS can be used in a similar way.Beer is not cold and it isn't fizzy. |
|
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
|
|
|
|