Hi,
I am trying to export the output from oracle query to a csv file using SSIS. I have the oledb source and a flat file destination tasks. The output of the csv file randomly strips the first few digits from the first field. Example as below:
Query : select customerno, case when type = 'RT3' then '3'
when type = 'RT2' then '2'
when type = 'RT1' then '1'
else '0'
end
from customer.
Expected output is:
10001234,2
11002342,1
21005423,3
23007323,1
Actual output:
10001234,2
1002342,1
5423,3
23007323,1
What could be wrong?
I am trying to export the output from oracle query to a csv file using SSIS. I have the oledb source and a flat file destination tasks. The output of the csv file randomly strips the first few digits from the first field. Example as below:
Query : select customerno, case when type = 'RT3' then '3'
when type = 'RT2' then '2'
when type = 'RT1' then '1'
else '0'
end
from customer.
Expected output is:
10001234,2
11002342,1
21005423,3
23007323,1
Actual output:
10001234,2
1002342,1
5423,3
23007323,1
What could be wrong?