Viewing 15 posts - 12,241 through 12,255 (of 13,838 total)
Strange indeed - thanks for posting back & well done.
February 24, 2010 at 3:02 am
Rather than your 'blank' "" - which is an empty string - your values may be coming in as NULL.
Try this (untested) instead:
IsNull([Column_1])? "0" : [Column_1]
You can always add in...
February 23, 2010 at 11:39 am
Finding a character in a string - use FINDSTRING.
Finding a carriage return - look for "\r".
Finding a new line - ""
Edit, that new line code should say
double quote backslash...
February 23, 2010 at 1:16 am
What is your data source?
February 22, 2010 at 2:58 pm
Not sure about that 'bug', but why not simply move the processed files to another folder (/Archive, for example)? It's tidier and your problem will go away.
February 20, 2010 at 1:18 am
Please include a question or two in your post.
February 19, 2010 at 12:27 pm
Does the SQL Agent service user have the requisite privileges to access the other servers?
February 19, 2010 at 9:19 am
Then there is a suggestion that the time increase gets worse as each package runs.
Can you swap, say, Master1 and Master3 to confirm this?
It would be useful to know...
February 18, 2010 at 2:01 am
It would be useful background if you would explain a bit about what the packages are doing - what is Master3 doing that the other 2 are not?
February 18, 2010 at 1:33 am
Are the quotes appearing as text-field qualifiers? Or just noise in your file that you want to delete? Do you mean single or double quotes? I omitted to mention the...
February 17, 2010 at 6:19 am
Pipe-delimited files can generally be imported just fine with the flat-file source & if I were you I'd spend more time trying that method before wading into script. Presumably you...
February 17, 2010 at 3:52 am
It is common practice to move a file to an archive folder of some sort after processing it - perhaps adding 'processed date' to the file name in the process.
If...
February 17, 2010 at 12:34 am
Is Converted_My_VALUE always numeric, or is it sometimes NULL? Can you give an example of some of the data it contains when it is failing?
February 16, 2010 at 1:07 am
Viewing 15 posts - 12,241 through 12,255 (of 13,838 total)