Viewing 15 posts - 136 through 150 (of 157 total)
jsheldon (1/29/2008)
In my source flat file...
January 29, 2008 at 1:29 pm
If all else fails, you can apply a type cast in a Derived Column component in your data flow to change the inbound DT_STR to an outbound DT_WSTR:
Derived Column Name:...
January 10, 2008 at 8:48 am
You might be able to accomplish this using a script component in your data flow which finds the length of the longest output line, then pads all of the others...
January 9, 2008 at 2:52 pm
Is it the sorting, or the physical output that's failing?
January 9, 2008 at 2:31 pm
One thing that I would suggest is to implement error handling in your packages. Instead of the default fail component on an error, select the redirect option, and route...
December 19, 2007 at 2:37 pm
I was asked some time ago to do this in SSIS, but I was able to convince my upstream data provider to use SAS on their mainframe to convert the...
December 7, 2007 at 2:23 pm
Since it looks like you have {CR}{CR}{LF}, try selecting the Row Delimiter, and putting that in rather than accepting one of the choices in the pulldown. I don't know...
December 4, 2007 at 2:13 pm
To peel the first row without grabbing the others, have you tried just the {LF} or the {CR} alone as a row delimiter? I've had the former in some...
December 4, 2007 at 1:37 pm
I believe that what you're asking about in SSIS terminology is Parent Package Variables. If so, there's an MSDN article: http://msdn2.microsoft.com/en-us/library/ms345179.aspx that gives an overview. This...
December 4, 2007 at 7:03 am
In the connection manager for your flat file, under the Advanced heading, you can specify the internal data type for each incoming column to match the desired output type, e.g....
November 30, 2007 at 10:48 am
I can't tell from the error descriptor which part of the conversion is throwing the error. I can suggest that for dealing with date fields which may contain null...
November 29, 2007 at 12:28 pm
If you re-order the date string into the format 'mm-dd-yy' and then run a year( ) function call on it, it will convert the two-digit year into a four-digit year....
November 20, 2007 at 8:10 am
The expression looks right to me, is there any possibility that the incoming field is not formatted correctly in the source data? The error message seems to indicate a...
November 19, 2007 at 8:01 am
To go from a varchar date: 'dd/mm/yy' to a mm/dd/yy datetime in SSIS, you could use something like the following as the expression in a derived column transformation:
ISNULL(CHAR_DATE) ? NULL(DT_DATE)...
November 19, 2007 at 6:30 am
The sites that I used the most when learning SSIS were:
Marcin Policht's Column at http://www.databasejournal.com/article.php/1503191
Jamie Thomson's blog - http://blogs.conchango.com/jamiethomson/
SSIS Stuff MSDN Blog - http://blogs.msdn.com/mattm/default.aspx
November 14, 2007 at 6:32 am
Viewing 15 posts - 136 through 150 (of 157 total)