Hello,
In my app I am working with large datasets, specifically where one record can be associated with 10+ records in another table. It is a many-to-many relationship in SQL, so I am using a Junction (or link) table to solve this. For example, if a record of ID=1 is associated with 10 other records of IDs 1-10, there would be ten entries in that table, like:
1 1
1 2
.
.
.
1 10
I am doing this by looping over the combobox where the 10 records are, and then using a ForAll and nested patch to insert the 10 rows into my table. Like this:

My issue is that sometimes, like 1 out of 5, the ForAll and patches will just not fully work. They will only insert 7 out of 10 records, or other ones won't work. I am really curious why. I have spent days looking in the Monitor tool, and I can't figure it out. It is like it just randomly skips over some data. Is there a lag/size limit?
Any thoughts are appreciated,
Thanks!