Viewing 15 posts - 46 through 60 (of 96 total)
You will also have a separate connection manager for each file format.
This is the most straightforward approach but tedious to code.
February 18, 2009 at 7:52 pm
You can use a for each loop to bring back each file name. You will need a step to determine what table a file needs to be loaded to....
February 18, 2009 at 7:42 pm
Another approach for when the sheets are not logically named is:
In a for each loop,
on the collection page,
use enumerator for each ADO.NET Schema Rowset Enumerator
...
February 18, 2009 at 7:35 pm
One problem I run into with these articles is only one inch of the code is visible at a time. Is there a way I can get more of...
February 9, 2009 at 10:30 pm
Put the company name in a variable. You will be able to access it in a derived column task.
February 2, 2009 at 4:30 pm
One approach to getting the end of the previous month is to add a derived column transformation to the data flow task that reads the Excel file. It could...
January 30, 2009 at 9:41 pm
Sometimes Excel will have blank rows after the rows you can see data in. You will need to check for that.
January 30, 2009 at 5:54 pm
I finally tracked it down by making a copy of the package and deleting things until the error went away. The problem was with a script component. I...
January 8, 2009 at 9:21 am
Where you read in the file, did you set the error handling to either ignore or reroute bad rows?
The next step should be a conditional split to only pass the...
December 4, 2008 at 4:32 pm
They are all true.
September 30, 2008 at 10:50 am
Here is a section of script component that will count the commas and put the remaining text in double quotes.
Public Overrides Sub Input0_ProcessInputRow(ByVal Row As Input0Buffer)
...
August 7, 2008 at 7:15 pm
Try defining the row of the file as one long record and run it into a script component. The script component should count over 24 commas and put anything...
August 6, 2008 at 9:28 pm
I have only done it as a child package. You might also take a look at creating event handlers. Perhaps some of what you want to do could...
August 1, 2008 at 7:16 am
One possibility is to create a package with the common logic and call it as needed.
July 31, 2008 at 5:47 am
It looks like the directions in the website are for script components, not script tasks. I was able to follow the directions in a script component and when I...
July 30, 2008 at 8:26 pm
Viewing 15 posts - 46 through 60 (of 96 total)