Are the fields directly linked?
Are the fields that you need to update in any way linked in the relationships? Not the tables but the fields you want to update(in other words, are they copies of the main field or a pointer to the main field). If it is a copy of the main field, then what should work is using a UPDATE command in SQL, but it might have to be multiple updates. I was thinking of something like this:
Code:
UPDATE Field1 from table1
where field1 = @fieldrefer
but you would have to create a separate UPDATE for each table you want to update. Hopefully, some other forum buddy might have a better solution. This one could be a little time consuming.
Good luck!
PS-Or you can try passing parameters to a procedure to process the updates ByRef
[Edited by vbuser1976 on 11-20-2000 at 11:18 AM]