Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello
I have simple job to insert lines in a oracle database
My table is name EXP_DT and looks like this :
When I insert a new line, ID should automatically increase by 1.
my input file is like this:
in dboutput, in the settings, my schema is defined like my input file : I have 2 columns "name" and "entity"
In the advanced settings, i am confused. thias is what I was told tu put:
Hi @android devops
SEQ_ID_EXPDT is the name of sequence defined on your database.
ok thanks,
can someone tell me how I can I get the name of a sequence in a oracle database?
My colleague told me to use this sequence name but if he wasn't here, houw could I have access to this sequecne name
I would use a tool like DBeaver to browse the database and identify the sequences available.
But you could use other methods like querying the database:
select sequence_owner, sequence_name from dba_sequences;
https://stackoverflow.com/questions/21738117/how-can-i-get-all-sequences-in-an-oracle-database