M
Mark
Hi I have a tricky one I could not find any reference to it in previous posts.
I have a linked table in SQL (Table - X) with 200,000+ entries and has 300+
fields. I update table X's 300+ fields with code based on data in another
table I have in an Access (Table - Z). Each field has a primarykey as
'Peoples Names'
I extracted 100 'peoples names' from X and updated their data in table Z
with different data and now I would like to re-update table X with the new
updated data. I now need to update the 300+ fields in X by running the code
for the 100 peoples names that are in table Z, only.
I originally made a:
do
'run updates'
rst.movenext
loop
which worked fine when i originally did the 200,000entries but now i only
want to update the 100 peoplenames in table Z, otherwise ithe performance of
updating the SQL is way too slow as it will run through every one of the
entries('peoples names')
Am i clear?
Any help would be appreciated.
Mark
I have a linked table in SQL (Table - X) with 200,000+ entries and has 300+
fields. I update table X's 300+ fields with code based on data in another
table I have in an Access (Table - Z). Each field has a primarykey as
'Peoples Names'
I extracted 100 'peoples names' from X and updated their data in table Z
with different data and now I would like to re-update table X with the new
updated data. I now need to update the 300+ fields in X by running the code
for the 100 peoples names that are in table Z, only.
I originally made a:
do
'run updates'
rst.movenext
loop
which worked fine when i originally did the 200,000entries but now i only
want to update the 100 peoplenames in table Z, otherwise ithe performance of
updating the SQL is way too slow as it will run through every one of the
entries('peoples names')
Am i clear?
Any help would be appreciated.
Mark