Viewing 5 posts - 16 through 20 (of 20 total)
Good to know it helped and you have something automated 🙂
September 21, 2012 at 12:56 am
Not sure if this is good question to ask but still; are you running SP from management studio and SSIS package on same database or on different copies of databases?
The...
September 20, 2012 at 6:12 am
Your code should be like below:
parameters[0].DefaultValues = new string[] {"My_DB_Name"};
rs.SetItemParameters(report, parameters);
September 20, 2012 at 5:53 am
You need to create an array of ItemParameter and pass it to the function. Below is the sample code:
ItemParameter[] param = new ItemParameter[1];
param[0] = new ItemParameter();
param[0].Name = "parameter1"; ...
September 20, 2012 at 5:43 am
SSIS does not support multiple instances on a machine. Having said that, for 2012 SSIS packages have a new deployment model and you can see a new item named as...
September 14, 2012 at 4:25 am
Viewing 5 posts - 16 through 20 (of 20 total)