Forum Discussion
Rather complex Append Query
- Jul 25, 2022
standenman This is as close as I come to a flat out "never".
Never try to append records to multiple tables in a single query.Start with the One-side tables. Append their records.
Then use the resulting Primary Keys in subsequent appends to the Many-side tables.
Of course, that requires you to have enforced Referential Integrity on all relationships. The screenshot does show that, and that's a potential red flag.
standenman This is as close as I come to a flat out "never".
Never try to append records to multiple tables in a single query.
Start with the One-side tables. Append their records.
Then use the resulting Primary Keys in subsequent appends to the Many-side tables.
Of course, that requires you to have enforced Referential Integrity on all relationships. The screenshot does show that, and that's a potential red flag.
- standenmanJul 25, 2022Copper Contributor
George_Hepworth Thanks so much!