Viewing 8 posts - 16 through 23 (of 23 total)
In case someone may need this in future.
I found a solution to my problem from this site https://www.simple-talk.com/sql/ssis/implementing-foreach-looping-logic-in-ssis-/.
A great article in there and I created a package based on it...
February 20, 2013 at 1:40 am
Thank you.
I will go through the link that you provided.
February 10, 2013 at 11:02 pm
Thanks Anthony, that works for me.
anthony.green (6/12/2012)
June 12, 2012 at 6:49 am
Lynn Pettis (4/25/2012)
DECLARE @Area VARCHAR(50);
DECLARE @A2 VARCHAR(50);
SET @Area = 'GAUTENG EAST 1...
April 25, 2012 at 11:33 pm
Thanks,
So having a check for char(9), char(10) and char(13) should cover me for the spaces?
I have implemented the function on my full query and seems to be working fine...
April 25, 2012 at 8:06 am
Hi all,
I find a solution for my problem.
It seems that there was line feed {char(10)} and that was looking like a space.
So I used:
REPLACE(@OutputFieldRecord, char(10), '')
and this solved the problem.
I...
April 25, 2012 at 7:36 am
Hi bitbucket,
My function is already trimming the field but for some reason the trim did not work.
This leads me to believe that it is not a space but a funny...
April 25, 2012 at 7:04 am
how would I cater for the tab or double space?
April 25, 2012 at 6:24 am
Viewing 8 posts - 16 through 23 (of 23 total)