>I have a table called Course need to be updated. It is like this:
>
[quoted text clipped - 33 lines]
> I know this might be done in recordset to go through each record but I
> just don't know how. Please help. Thanks
I know it's design problem However, Course is designed to import text file
downloaded from mainframe daily and cannot be altered.
I cannot use FixFall to replace Course completely as there are many other
fields in Course but not in FixFall.
I want to know if some kind of intermediate table or query be created to
solve this problem.
Thanks.
> It looks like you have a basic design problem, in that you have no way of
> uniquely identifying a record, so that you know it is the same record.
[quoted text clipped - 42 lines]
>> I know this might be done in recordset to go through each record but I
>> just don't know how. Please help. Thanks
Amy Blankenship - 03 Aug 2006 19:29 GMT
>I know it's design problem However, Course is designed to import text file
>downloaded from mainframe daily and cannot be altered.
>
> I cannot use FixFall to replace Course completely as there are many other
> fields in Course but not in FixFall.
Could one of those other fields be used to help you to identify what records
need to be updated?
> I want to know if some kind of intermediate table or query be created to
> solve this problem.
I doubt it. There's no way to create a join that would know what record
goes with what, especially since you don't have the same number of records.
Michel Walsh - 03 Aug 2006 23:17 GMT
Hi,
Append the data into a table with an autonumber, for each table you import.
Doing so, you don't modify the date you received, you just handle it into
another table, that is not forbidden by anyone.
The autonuber field, in each of the table, will then allow you to easily
match the records row by row, between your two "working" tables (each one, I
repeat myself, having an autonumber).
Hoping it may help,
Vanderghast, Access MVP
>I know it's design problem However, Course is designed to import text file
>downloaded from mainframe daily and cannot be altered.
[quoted text clipped - 53 lines]
>>> I know this might be done in recordset to go through each record but I
>>> just don't know how. Please help. Thanks