here is my pass-through query (access odbc connection):
SELECT abc_MAIN.abc_SEQUENCE.NEXTVAL FROM DUAL;
It assigns unique value to a primary field from one of the tables linked to oracle database.
I need to use values from this pass-through query in the loop which will populate 1000 records in the oracle table. without primary key the table will not be updated.
what is the right way to loop through such a query?
rst!id=abc_MAIN.abc_SEQUENCE.NEXTVAL ???
will apppreciate any help!
SELECT abc_MAIN.abc_SEQUENCE.NEXTVAL FROM DUAL;
It assigns unique value to a primary field from one of the tables linked to oracle database.
I need to use values from this pass-through query in the loop which will populate 1000 records in the oracle table. without primary key the table will not be updated.
what is the right way to loop through such a query?
rst!id=abc_MAIN.abc_SEQUENCE.NEXTVAL ???
will apppreciate any help!