hello...
I have two tables (T1 and T2) that it has like primary key to a field of type integer and identity. T2 has like foreing key the primary key of T1.
Appears the following process:
A first, inserted in T1 registry.
Second, I recover ID generated in T1 (SELECT IDENTITY_VAL_LOCAL() FROM SYSIBM.SYSDUMMY1).
Third, inserted one in T2 with ID generated of T1.
I want to know that isolation level must have my data base for this process.