I have a table.
TableMain which has two fields. Field1: VendRecId Field2: TestRecId
which stores recids of tables Vendtable, TestTable.
Tablemain has no Index.
I am importing data into MainTable using DIXF/DMF. Its importing fine. When I kept duplicate data in the file while importing. It created new record instead of updating. Could you please let me know how to do such that it will update instead of inserting duplicate record.
I am not supposed to modify the TableMain
TableMainandMainTable, are these the same thing? And I think you need a unique index in order forDIXFto know what record toupdate...otherwise how is it going to know what constitutes a field that needs updated or what's a key?? - Alex Kwitny1, 1) and row 2 (1,2) and you want update with data that has (1,3). How does it know if that's a new record, or you're updating one of the other rows, etc. I just don't see any logical way it can do that. - Alex Kwitny