Viewing 15 posts - 11,446 through 11,460 (of 13,871 total)
the problem is not visible in the csv file.
Are you sure? How did you check? What do you want to do with the bad data?
May 2, 2011 at 8:38 am
A couple of ideas spring to mind:
1) Do not use Select *
2) Put a dummy Select near the top of your routine to try and trick SSIS into thinking it...
April 27, 2011 at 1:36 pm
I think you need to put something between the BEGIN and END - not just a comment.
April 27, 2011 at 8:38 am
jpSQLDude (4/26/2011)
April 26, 2011 at 10:31 am
Sri8143 (4/26/2011)
Yes i did it didnt work ..any other suggestions would be helpful...
This works:
DECLARE @CRTEXT VARCHAR(50)
SET @CRTEXT = 'Text ' + CHAR(13) + CHAR(10) + 'more text'
SELECT @CRTEXT, REPLACE(@CRTEXT, CHAR(13)...
April 26, 2011 at 9:04 am
One of my larger concerns here is the prioritization of the suborder within an ID. Unless that's pre-built into the file, this becomes a painful endeavour of conditional logic, and...
April 26, 2011 at 3:25 am
The first thing I'd do is use a hex editor to assure myself that I know exactly what the characters are which need to be replaced.
Then use REPLACE as part...
April 26, 2011 at 2:10 am
Thanks Craig.
I was basing my recommendation on this article which, now that I look at it, is not quite what is required here.
The sample code in the article creates 3...
April 26, 2011 at 2:05 am
LutzM (4/23/2011)
April 23, 2011 at 11:32 am
JStevenson1 (4/22/2011)
April 23, 2011 at 3:00 am
Craig Farrell (4/21/2011)
You really don't want to do this in SSIS.---
Actually, I think there is quite a nice way for SSIS to handle this - using an asynchronous...
April 22, 2011 at 8:17 am
patricholier (4/21/2011)
HiI found that a member asked same question in this forum some months ago.
Pls use search box to find this questions with comments
Same as what?
To whom are you directing...
April 21, 2011 at 8:07 am
Neat.
And there was me trying to find the second occurrence of "\" and SELECT LEFT to that position, dealing with NULLs etc along the way. Not pretty.
April 21, 2011 at 2:27 am
bhavika.chauhan (4/20/2011)
Every time i run my package , i create dome folders dynamically using FST . But i want to maintain a version for it . How can i create...
April 20, 2011 at 8:40 am
Jack Corbett (4/20/2011)
I'll second Keon's suggestion. I was going to suggest exactly what is in the other thread.
Who's this Keon then? 🙂
April 20, 2011 at 8:17 am
Viewing 15 posts - 11,446 through 11,460 (of 13,871 total)