I am currently importing a large table into Access for an update query. Ideally I would like to link to the CSV file instead of importing it.
I link to the CSV file with no issue...however, when I chage the imported table to the linked CSV so I can use that value to update my Acccess table I receive an error message That "Updating a linked table is not supported by ISAM"... I am not updating the linked table, I am using the value from the linked table to update Access.
Here is the query code generated....
UPDATE [Combined Quality Tracker] INNER JOIN [Data_x_CSV] ON [Combined Quality Tracker].[Normalized CAS ID] = [Data_x_CSV].[CAS ID] SET [Combined Quality Tracker].[Booking Region] = [CIS Incremental Statuses];
I link to the CSV file with no issue...however, when I chage the imported table to the linked CSV so I can use that value to update my Acccess table I receive an error message That "Updating a linked table is not supported by ISAM"... I am not updating the linked table, I am using the value from the linked table to update Access.
Here is the query code generated....
UPDATE [Combined Quality Tracker] INNER JOIN [Data_x_CSV] ON [Combined Quality Tracker].[Normalized CAS ID] = [Data_x_CSV].[CAS ID] SET [Combined Quality Tracker].[Booking Region] = [CIS Incremental Statuses];