Viewing 15 posts - 16 through 30 (of 96 total)
Is there any pattern to which rows are missing? For instance, is it skipping every other row?
November 11, 2009 at 8:03 pm
The sort task is very slow and only suitable for small files.
If the data is coming from a database, you could use the order by command to sort...
November 9, 2009 at 9:09 pm
You could build the header and trailer separately from the detail rows. Then append the files together.
You can write a file as delimited or fixed width with...
November 9, 2009 at 9:02 pm
Thanks for the update. It looks very clear and easy to understand.
Kay
October 19, 2009 at 5:59 pm
You could use a derived column task and have one new field for each edit. A script component could be used to write out rows to the error file...
October 9, 2009 at 6:26 pm
Set up a variable to hold the latest file so far. In your script task inside the for each loop container, compare the current file to the file in...
October 7, 2009 at 5:57 pm
One approach is to use a script task. This is the most straightforward approach but requires knowing the script task language.
Another possibility is to use a data flow task....
September 28, 2009 at 5:43 am
On the Collection tab of the Foreach Loop Editor and on the right side, not the left, expand Expressions (Expressions occurs twice on the screen). Look for CollectionEnumerator. ...
September 26, 2009 at 8:33 am
If you are certain SourceTable does not have duplicate keys (Fname and phone), you can do the following:
In the data flow task, add a flat file source for SourceTable and...
September 25, 2009 at 9:39 pm
I assume a row coming in is a duplicate if it matches on Fname, Lname, phone, and address.
How do you determine that an incoming row should cause an update to...
September 25, 2009 at 5:58 pm
Set FileCount to the value in varFileCount. Then add one to it. Your present approach keeps adding 1 to zero.
September 25, 2009 at 9:09 am
What about using an execute sql task that contains the insert code, since the view and table are on the same server?
The command would be of the form
insert into...
September 25, 2009 at 8:29 am
Viewing 15 posts - 16 through 30 (of 96 total)