Hello all,I have stumbled across a problem I ran across previously but I
don't know how to fix the problem. I have an insert query in my
SQLAssembler that inserts a record into our Oracle database. I have an
id-query that gets the currval from a sequence for the primary key of
the new record: INSERT INTO WORK_QUEUE
(WORK_QUEUE_ID, CREATION_DATE, DESCRIPTION) VALUES (#WORK_QUEUE_ID#,
TO_DATE(#CREATION_DATE#, 'MM/DD/YYYY'), #DESCRIPTION#)
SELECT SUBSCRIBER_ID_SEQ.CURRVAL FROM DUAL
where WORK_QUE...