I have a test.txt file with column (Serialnumber,value
).
test.txt:
"SEQ_IN_AMT.NEXTVAL",123123
"SEQ_IN_AMT.NEXTVAL",123114
here SEQ_IN_AMT
is a sequence name create on Oracle. Now, when I load this file through sqlldr
in unix to Oracle db.i
want the value of this sequence so that I will use this sequence value in below procedure:
P_UPDATE_VALUE (SEQ_IN_AMT.NEXTVAL,value)