I'm in the process of writing batch loading SQL script and I would like to store the generated primary key of an insert statement into a temp variable and use it to reference the foreign key in the other tables. Any ideas?
I'm doing the following:
Y = INSERT INTO X(.....)
INSERT INTO Z(...,Y,);
idauto-gen id)? Also, unless you are processing line-by-line, you can only store one (or some limited number) id at a time that way (assuming your version of DB2 supports declaring variables) - this may be slow. Other than that... look for data-change-table-reference, probably theNEW TABLE(INSERT ....)clause. – Clockwork-Muse Nov 1 '11 at 17:27