Is there anyway to get Deluge to update multiple records at once.
A record in Table A has multiple records in Table B. Some data from Table A is replicated to Table B to speed performance. When Table A changes, I need to update all the records in Table B. This does not work
Fetched_Records = Table_B[Key = TableA.key];
Fetched_Records.Field_to_Update = TableA.New_Field_Value;