Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
4answers
2k views

How to programatically create an SSIS Package?

I am trying to programatically create an SSIS package containing a simple data flow from table A to table B in the same database. I am using the example given here. The package gets created and saved ...
3
votes
3answers
10k views

Update table using SSIS

I am trying to update a field in a table with data from another table, based on a common key. If it were in straight SQL, it would be something like: Update EHSIT set e.IDMSObjID = s.IDMSObjID from ...
2
votes
1answer
504 views

Is it possible to perform a “LIKE” statement in a SSIS Expression?

I'm using a Derived Column Task to change column data using a CASE WHEN statement. However, I need to be able to say.. SQL CODE WOULD BE: CASE WHEN Column01 LIKE '%i%' THEN '0' ELSE '1' END In ...
2
votes
4answers
2k views

Measuring Progress of SSIS Data Flow

I am running a SSIS package to load say a million rows from a flat file, which uses a script task for complex transformations and a SQL Server table destination. I am trying to figure out the best way ...
1
vote
1answer
650 views

“The selected data source is on remote computer” error when creating an SSIS job

I am in the process of developing an SSIS job on my workstation which a Data Flow Task open a comma delimited flat file on my local workstation and imports the data to a SQL server database on a ...
1
vote
1answer
354 views

SSIS Data Flow Update

I am trying to figure out the best way to approach the following scenario. Overview Payments are collected over the course of the day and stored in a table (SQL Server). At the conclusion of each ...
0
votes
2answers
41 views

How to handle an empty query result on a DataFlow Task?

I'm iterating several years with a Dataflow inside a Foreach Loop, but there are some years that will not return any data, therefore they SSIS package fails, is there a way to handle this? To tell the ...
0
votes
0answers
81 views

Using an SSIS variable in a DataFlow task

I have and SQL Execute task that gets me a list of years and save them into a an object variable, let's say "Years". Then I have a ForEach Loop Counter that recieves thah variable, and inside that ...
0
votes
1answer
18 views

Why is STR Available Inconsistently?

When I create a OLE DB source, I can use the following expression: STR(1234.545, 8, 2) But when I use a Derived-Column flow task, that expression is illegal. The design-time error states: The ...
0
votes
1answer
591 views

Using Multiple Sources in SSIS Data Flow Task

For my data flow task I have a OLEDB Source. In the SQL command section of this I have compiled a select query based on tables from two different databases, held on the same instance. Every time I ...
0
votes
3answers
995 views

How do I get SSIS Data Flow to put '0.00' in a flat file?

I have an SSIS package with a Data Flow that takes an ADO.NET data source (just a small table), executes a select * query, and outputs the query results to a flat file (I've also tried just pulling ...
0
votes
1answer
449 views

The version of component “x” is not compatible with this version of the DataFlow

Getting this error trying to run an SSIS Package on a 64 bit install of SS2K5 Enterprise Edition SP3. Package was developed using 32 bit BIDS, and deployed successfully to 64 bit SS2K5 Enterprise ...
0
votes
1answer
2k views

Why is > conditional split in SSIS package returning >= result? update: (DateTime != DT_DBTIMESTAMP ?!)

I have an SSIS data flow conditional split transformation that is returning a >= result when it should be returning a > result. From the beginning... My SSIS package executes a SQL task that stores a ...