36 questions
0
votes
1
answer
54
views
Insert into DB2 database from SQL server using SSIS
I want to insert into DB2 Database from SQL server using SSIS. The insert should happen multiple times in a day. Approximately need to insert 1 million records and needs to inserted short span. Tried ...
0
votes
0
answers
53
views
Possible reasons for an SSIS conditional split into the same destination table?
I've been given the unenviable task documenting the catalogue ingest process of our data warehouse. All was going well until the end where I came across the use of a conditional split inside of an ...
0
votes
0
answers
20
views
Can we store just a clause of a WHERE condition into a variable in SSIS?
I want to change the clause of my where condition dynamically from the config file. So if I store the clause into a variable I can do it, I am not able to figure out how.... Need a solution for this
I ...
1
vote
1
answer
1k
views
SSIS Conditional Split Error - The data type DT_BYTES cannot be used with binary operator "=="
While configuring a conditional split component with the following expression:
[VersionStamp_Source] == (DT_I8)[VersionStamp_Destination]
I am getting the following error:
The data type DT_BYTES ...
0
votes
0
answers
427
views
Using a variable as the input for a Conditional Split control
Might be going about this completely the wrong way - happy to be shown the error of my ways.
In a nutshell, I've got 50-odd files of mixed types (csv and excel) that I want to import (each file to its ...
0
votes
0
answers
99
views
SSIS Conditional Split Not Working as Expected
I have the following Conditional Split set
Not Posted : O_Variance != 0 && O_L_Revenue_nSAP == 0
Need Investigating : O_Variance != 0 && O_L_Revenue_nSAP != 0
Posted : O_Variance == 0
...
3
votes
5
answers
1k
views
SSIS Expression to handle NULLs in multiple columns
I have an OLE DB source that has some nulls, it has 50 columns and I'm trying to extract the rows that have NULLs to Bad data destination, the expression that I had for the conditional split is
ISNULL(...
3
votes
1
answer
218
views
Use query as conditional split expression in SSIS
How to use the query below in conditional split , nxdt is a date column; it has values like 11/30/0002 00:00:00.000000. Hence used below query to filter out and need to use the same in my package
...
4
votes
1
answer
1k
views
Unable to use rowcount and conditional split in same data flow task
In SSIS,I want to split the data after lookup based on whether any no match record is found or not .IF no match record has atleast 1 row or count it should process certain action. I used row count ...
2
votes
1
answer
997
views
Filtering data values in one column based on another column and then inserting values into different columns in same SQL Table
This is a bit of a conundrum I am trying to solve using SSIS and a conditional-split transformation. I have a .csv file that contains attribute data in one row for each unique user and the values for ...
0
votes
1
answer
331
views
ssis conditional split not executing all conditions
In the SSIS I have the conditions seen in the image. When I run the package all conditions process except the ActivityChange. If I run the package again Activity Change is executed. Both ...
0
votes
2
answers
47
views
ConvertRowsTocolumns Using SSIS
I have to extract data from Flat files and load into a staging database
ex: I have this flat file without column header and i would like to get each row into a seperate column
Text file data: This ...
0
votes
1
answer
72
views
Combine 2 Conditional Split Cases into 1
I have 1 SSIS Conditional Split with 2 conditions, which I need to combine. Both conditions are looking for the same date.
[DateFinished] > (DT_DBTIMESTAMP)"2016-09-01"
[DateTBFinish] > (...
0
votes
1
answer
778
views
SSIS condition to replace #Name? and display no value
When I run my SSIS package, I receive a #Name? in a column cells where no value is present, so I created a Conditional Split using the following condition, ISNULL(columnname) || LEN(columnname) == 0.
...
0
votes
0
answers
383
views
How to define the "breaks" to classify a raster data
First time posting a question here. Useless times this forum helped, but now, I fell my R skills are not strong enough to do the job.
My problem is: I have a Spatial Data frame with multiples ...
3
votes
1
answer
875
views
Combining 2 date fields for a conditional split
I am new to SSIS, so please excuse me if need to clarify my problem.
We have 2 date columns, Release Date and Approved Draft Release Date.
Currently, when a date is manually entered into the ...
5
votes
2
answers
5k
views
How to compare two GUIDs in SSIS Conditional Split?
I have seen this question and I tried what it suggested, but without any success (see Attempt 1 below).
I have tried the below conditions in my Conditional Split without success. I have checked that ...
4
votes
1
answer
2k
views
SSIS Condition split based on column value
Good Day All,
I have a select query where i pull the data from sql ie
select invno , date_received from sales
What i want to do is split the file into multiple files using conditional split.
I don't ...