IN YOUR A SESSION, CREATE A SEQUENCE AS FOLLOWS

2. In your A session, create a sequence as follows:

create sequence seq1 start with 10 nocache maxvalue 15 cycle;

The use of NOCACHE is deleterious to performance. If MAXVALUE is specified,

then CYCLE will be necessary to prevent errors when MAXVALUE is reached.