What are the other ways of achieving autoincrement in oracle other than use of triggers?
|
|
|||
|
|
|
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). |
||||||
|
|
|
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 |
||
|
|
|
A trigger to obtain the next value from a sequence is the most common way to achieve an equivalent to AUTOINCREMENT:
You don't need the trigger if you control the inserts - just use the sequence in the insert statement:
This could be hidden inside an API package, so that the caller doesn't need to reference the sequence:
But using the trigger is more "transparent". |
||||||||
|
|
|
Use a sequence |
||
|
|
|
|
If you don't need sequential numbers but only a unique ID, you can use a DEFAULT of SYS_GUID(). Ie:
|
||
|
|
|
Create a sequence:
Then to add a value
Note: Look for oracle docs for more options about sequences (start value, increment, ...) |
||
|
|
|
|
select max(id)+1 from table |
||||||
|
