I want to create a primary key auto increment under oracle!
I had created an output table (Oracle) and I want to add an automatic primary key! how can I do that ?
You are adding an extra ID column. Your schema already includes it and you are adding a new one with your advanced settings. Change the "Before" to "Replace" in the advanced settings.
You need to change "Colonne de ref" to "ID" if you haven't. You are essentially replacing the value that would have been placed in this column with the next value of the sequence.
EDIT: ....or do what Jlolling said. Either will work