Hello,
I am trying to build a relationship between 2 tables by trying to match up records between them, grab a value from table B, and then insert it into table A for the corresponding record.
The problem is the tables are very large (table A, which I'm updating, has 400,000+ records), and I have to be careful not to run a process that will hog the system.
The update command for individual records is taking several seconds. Is there a good method I can use to look up values and update the tables without clogging the system?
Thanks
I am trying to build a relationship between 2 tables by trying to match up records between them, grab a value from table B, and then insert it into table A for the corresponding record.
The problem is the tables are very large (table A, which I'm updating, has 400,000+ records), and I have to be careful not to run a process that will hog the system.
The update command for individual records is taking several seconds. Is there a good method I can use to look up values and update the tables without clogging the system?
Thanks