Viewing 15 posts - 12,316 through 12,330 (of 13,838 total)
Good old Excel. First place to start might be with IMEX=1 in your connection string. See here for more info.
January 14, 2010 at 6:59 am
RonKyle (1/12/2010)
January 13, 2010 at 2:04 am
You cannot. There is no data pipeline at the control flow level, so a conditional split has no context in which to run.
What are you trying to do?
January 13, 2010 at 1:58 am
As SSIS is largely meta-data driven and you are not able to provide this meta-data - because it is not known in advance - you will find it difficult (now...
January 13, 2010 at 1:55 am
Yes it does. Give it a try and see how you get on.
January 13, 2010 at 1:42 am
In your example, there is no tab after char1, the 'code', yet the rest of the data has tabs delimiting the fields. So it's really not clear - it looks...
January 12, 2010 at 2:20 pm
susanaw007 (1/12/2010)
Thanks for the information. but i'm creating a package programmatically....
I don't see why that precludes the use of a query for the source, but I guess you have your...
January 12, 2010 at 4:04 am
Change your source from a table or view to a query and perform a CAST there ...
January 12, 2010 at 1:45 am
Welsh Corgi (1/11/2010)
I can't confirm that because the BO is out of town.
I have always been able to set standards for naming conventions and file formats but I...
January 11, 2010 at 1:11 pm
Why not just set a breakpoint or two and then run the package? You'll get into a full, interactive debugging session, much richer than writing out the odd result to...
January 11, 2010 at 1:00 pm
Use a combination of LEFT, CHARINDEX and SUBSTRING to split the field up.
January 11, 2010 at 12:56 pm
So all of the source files have the same number of columns and could be accommodated by string datatypes?
That is, you could read in all the data as col1, col2,...
January 11, 2010 at 1:53 am
Here's an example I got from MSDN which may help:
Dim arr As New ArrayList
arr.Add("D:\Tests\a.txt")
arr.Add("D:\Tests\b.txt")
Dts.Variables("User::Collection").Value = arr
Can you also confirm that your User::FileNames variable is of type 'Object'?
January 11, 2010 at 1:36 am
Viewing 15 posts - 12,316 through 12,330 (of 13,838 total)