vote up 4 vote down star

What are the other ways of achieving autoincrement in oracle other than use of triggers?

flag

Related question: Is it possible to create a sequence and then set the nextval method as the default value? i.e. create sequence seq; create table foo ( mycol number default seq.nextval ); – brofield Nov 25 '08 at 23:27

7 Answers

vote up 0 vote down check

As far as I can recall from my Oracle days, you can't achieve Auto Increment columns without using TRIGGER. Any solutions out there to make auto increment column involves TRIGGER and SEQUENCE (I'm assuming you already know this, hence the no trigger remarks).

link|flag
Of course you can. You create an Insert procedure that gets the nextval. you revoke Insert on that table and grant execute on that proc/package. No trigger needed. – Mark Brady Jan 27 at 18:47
Why was this answer selected? – cletus Jan 30 at 11:06
because it's true. You cannot do plain INSERT and achieve the same effect as autoincrement without the use of Trigger and Sequence. Mark Brady Answer is also true, if you consider Stored Proc as a plain insert. – Salamander2007 Feb 2 at 2:55
vote up 10 vote down

You can create and use oracle sequences. The syntax and details are at http://www.techonthenet.com/oracle/sequences.php

Also read the article http://rnyb2.blogspot.com/2006/02/potential-pitfall-with-oracle-sequence.html to understand the limitations with respect to AUTONUMBER in other RDBMS

link|flag
Exactly. Caching and rollbacks make this nearly impossible... +1. – Dan Vinton Dec 1 '08 at 13:10
vote up 5 vote down

A trigger to obtain the next value from a sequence is the most common way to achieve an equivalent to AUTOINCREMENT:

create trigger mytable_trg
before insert on mytable
for each row
when (new.id is null)
begin
    select myseq.nextval into :new.id from dual;
end;

You don't need the trigger if you control the inserts - just use the sequence in the insert statement:

insert into mytable (id, data) values (myseq.nextval, 'x');

This could be hidden inside an API package, so that the caller doesn't need to reference the sequence:

mytable_pkg.insert_row (p_data => 'x');

But using the trigger is more "transparent".

link|flag
The trigger might generate a sequence value only if :new.id is NULL, this would more closely mimic auto-increment in other database brands. – Bill Karwin Nov 25 '08 at 13:30
Thanks, Bill - I have amended the trigger. – Tony Andrews Nov 25 '08 at 14:42
Note that you need a FOR EACH ROW or else :new is not accessible... or at least that's what my textbook said when I took a class in PL/SQL. – R. Bemrose Nov 25 '08 at 14:45
Thanks, I have added FOR EACH ROW clause now. – Tony Andrews Nov 25 '08 at 15:20
vote up 2 vote down

Use a sequence

link|flag
vote up 1 vote down

If you don't need sequential numbers but only a unique ID, you can use a DEFAULT of SYS_GUID(). Ie:

CREATE TABLE xxx ( ID RAW(16) DEFAULT SYS_GUID() )
link|flag
Oooo, really good answer. – Mark Brady Jan 27 at 18:49
vote up 1 vote down

Create a sequence:

create sequence seq;

Then to add a value

insert into table (id, other1, other2)
values (seq.nextval, 'hello', 'world');

Note: Look for oracle docs for more options about sequences (start value, increment, ...)

link|flag
vote up -2 vote down

select max(id)+1 from table

link|flag
I think it's not really concurrent friendly – Salamander2007 Dec 15 '08 at 8:46
"I think it's not really concurrent friendly" I'll second that. I've seen web applications that were coded this way do all sorts of interesting things... – RussellH Dec 30 '08 at 1:44
That's really worst practice. Never ever use such things. – Marius Burz Nov 23 at 17:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.