Herouth Maoz writes:
> So, the inserts for the ccats table become:
>
> INSERT INTO ccats (cid, catid) VALUES (currval( 'name of seq' ), 5 );
What if someone does another INSERT between the two INSERTs, then the
number generator is stepped and the second table gets the wrong serial
number. Should one use LOCK here?
Marcus