Viewing 10 posts - 1 through 10 (of 10 total)
1. Is the 'Configuration Filter' an identifier for a specific package?
Not necessarily, a single configuration filter can be shared across packages.
2. When I select 'Finish' I get the following message...
October 6, 2010 at 8:50 am
Do you get any records, if you execute the SP??
Try this...
SET NOCOUNT ON
Exec SP
October 5, 2010 at 8:21 am
The error says that the connection string is not well formed...
Try to set the variable value as follows in script component:
'For xls:
Dts.Variables("strConnectionString").Value = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=D:\sample.xls;Extended Properties=""Excel 8.0;HDR=YES"";"
'For xlsx:
Dts.Variables("strConnectionString").Value =...
October 5, 2010 at 6:11 am
I guess you are using table variable inside your SQL query. If that is the case, then OLEDB source task will not generate the columns.
Use a stored procedure instead of...
October 5, 2010 at 5:32 am
There is nothing to do with the connection string. Excel connection is not supported in 64 bit environment. Hence the package needs to be executed in 32 bit mode only.
Try...
October 5, 2010 at 5:13 am
Try including SET NOCOUNT ON in the begining of your SQL script that is used in OLEDB source task.
October 5, 2010 at 5:06 am
Yes, single script component with multiple outputs will do... instead of a conditional split task and a script for each record type.
October 5, 2010 at 3:42 am
Define a Excel Connection Manager with sample output file. Use script task to dynamically generate the Connection String and store it in a string variable. In the properties of excel...
October 5, 2010 at 3:36 am
One possible solution is to read the complete line in the file as a single column using flat file connection manager & flat file source. Use a script component to...
October 5, 2010 at 2:58 am
Hi,
I am not sure under what circumstance you would want to roll back the DFT.
I am assuming that the DFT needs to be rolled back, if any errors occur...
October 5, 2010 at 1:03 am
Viewing 10 posts - 1 through 10 (of 10 total)