Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I realised that there is no concept of AUTO_INCREMENT on Oracle. How can I use SYS_GUID() to create 'auto increment'?

share|improve this question
1  
You can create a BEFORE INSERT trigger on the table and pull values out of a sequence to create auto-increment – Hunter McMillen Jul 2 '12 at 15:15
2  
possible duplicate of Autoincrement in Oracle – A.B.Cade Jul 2 '12 at 15:16

2 Answers

up vote 14 down vote accepted

There is no such thing as "auto_increment" or "identity" columns in Oracle. However, you can model it easily with a sequence and a trigger:

Table definition:

CREATE TABLE departments (
  ID           NUMBER(10)    NOT NULL,
  DESCRIPTION  VARCHAR2(50)  NOT NULL);

ALTER TABLE departments ADD (
  CONSTRAINT dept_pk PRIMARY KEY (ID));

CREATE SEQUENCE dept_seq;

Trigger definition:

CREATE OR REPLACE TRIGGER dept_bir 
BEFORE INSERT ON departments 
FOR EACH ROW

BEGIN
  SELECT dept_seq.NEXTVAL
  INTO   :new.id
  FROM   dual;
END;
/
share|improve this answer
7  
What will happen if, lets say, someone will insert a row with id=10000? everything will work fine untill one day an insert will fail, and no one will know why! it will be because the sequence will reach 10000. This is why you shouldn't put WHEN (new.id IS NULL), If you are using a sequence with a trigger then let the sequence give id's always – A.B.Cade Jul 2 '12 at 15:29
1  
You are totally right, editing. – Eugenio Cuevas Jul 2 '12 at 16:05
Thanks for this!! – imesh Apr 22 at 6:13

SYS_GUID returns a GUID-- a globally unique ID. A SYS_GUID is a RAW(32). It does not generate an incrementing numeric value.

If you want to create an incrementing numeric key, you'll want to create a sequence.

CREATE SEQUENCE name_of_sequence
  START WITH 1
  INCREMENT BY 1
  CACHE 100;

You would then either use that sequence in your INSERT statement

INSERT INTO name_of_table( primary_key_column, <<other columns>> )
  VALUES( name_of_sequence.nextval, <<other values>> );

Or you can define a trigger that automatically populates the primary key value using the sequence

CREATE OR REPLACE TRIGGER trigger_name
  BEFORE INSERT ON table_name
  FOR EACH ROW
BEGIN
  SELECT name_of_sequence.nextval
    INTO :new.primary_key_column
    FROM dual;
END;

If you are using Oracle 11.1 or later, you can simplify the trigger a bit

CREATE OR REPLACE TRIGGER trigger_name
  BEFORE INSERT ON table_name
  FOR EACH ROW
BEGIN
  :new.primary_key_column := name_of_sequence.nextval;
END;

If you really want to use SYS_GUID

CREATE TABLE table_name (
  primary_key_column raw(32) default sys_guid() primary key,
  <<other columns>>
)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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