create table with sequence.nextval in oracle [duplicate]
Asked Answered
G

5

55

i created a sequence using the following query,

create sequence qname_id_seq start with 1 increment by 1 nocache;

Now when i try to create a table which uses the above sequence, it is throwing the following error,

Error report:
SQL Error: ORA-00907: missing right parenthesis
00907. 00000 -  "missing right parenthesis"

I used the following query to create a table with sequence.nextval,

CREATE TABLE qname
(
    qname_id integer NOT NULL default qname_id_seq.nextval PRIMARY KEY,
    qname    VARCHAR2(4000) NOT NULL -- CONSTRAINT qname_uk UNIQUE
);
Gradin answered 16/5, 2012 at 7:25 Comment(0)
N
65

Oracle 12c

We now finally have IDENTITY columns like many other databases, in case of which a sequence is auto-generated behind the scenes. This solution is much faster than a trigger-based one as can be seen in this blog post.

So, your table creation would look like this:

CREATE TABLE qname
(
    qname_id integer GENERATED BY DEFAULT AS IDENTITY (START WITH 1) NOT NULL PRIMARY KEY,
    qname    VARCHAR2(4000) NOT NULL -- CONSTRAINT qname_uk UNIQUE
);

Oracle 11g and below

According to the documentation, you cannot do that:

Restriction on Default Column Values A DEFAULT expression cannot contain references to PL/SQL functions or to other columns, the pseudocolumns CURRVAL, NEXTVAL, LEVEL, PRIOR, and ROWNUM, or date constants that are not fully specified.

The standard way to have "auto increment" columns in Oracle is to use triggers, e.g.

CREATE OR REPLACE TRIGGER my_trigger
  BEFORE INSERT 
  ON qname
  FOR EACH ROW
  -- Optionally restrict this trigger to fire only when really needed
  WHEN (new.qname_id is null)
DECLARE
  v_id qname.qname_id%TYPE;
BEGIN
  -- Select a new value from the sequence into a local variable. As David
  -- commented, this step is optional. You can directly select into :new.qname_id
  SELECT qname_id_seq.nextval INTO v_id FROM DUAL;

  -- :new references the record that you are about to insert into qname. Hence,
  -- you can overwrite the value of :new.qname_id (qname.qname_id) with the value
  -- obtained from your sequence, before inserting
  :new.qname_id := v_id;
END my_trigger;

Read more about Oracle TRIGGERs in the documentation

Navicular answered 16/5, 2012 at 7:28 Comment(10)
Thank you very much! I am a newbie. May i know why you have used the line, :new.id := v_id; ? Pls help!Gradin
I'll update the answer. Note, I had a typo. It should be :new.qname_id, not :new.idNavicular
+1 for the trigger method, but i think you could lose the v_id variable completely and just select into the :new.qname_id. You might also just fire the trigger when new.qname_id is null as it allows code to reference the sequence nextval directly in the insert and bypass trigger execution.Alden
@DavidAldridge: single statement: You're right. I added the extra step to have more space for comments. Updated one of the comments. null check: good ideaNavicular
@LukasEder, I don't think that the null check is a good idea- lets say that nextval=10 and someone inserted a record with qname_id=10000, everything will be fine! untill one day (perhaps a year later) nextval will reach 10000 ...Littrell
@A.B.Cade: It's up to the OP to decide. That's why I said optionally restrict this trigger.... But obviously, you're right in most cases.Navicular
when you do this with a trigger is there a way to know what value was used on your most recent insert?Malocclusion
@RonSmith: If you're inserting through PL/SQL, you can use the INSERT .. RETURNING clause. A similar technique is also available through JDBC's getGeneratedKeys()Navicular
The shorter variant would be SELECT qname_id_seq.nextval INTO :new.qname_id FROM DUAL;.Limber
@Limber This was already suggested by DavidAldrige. Please read comments before posting.Chiccory
R
50

In Oracle 12c, you can now specify the CURRVAL and NEXTVAL sequence pseudocolumns as default values for a column. Alternatively, you can use Identity columns; see:

E.g.,

CREATE SEQUENCE t1_seq;
CREATE TABLE t1 (
  id          NUMBER DEFAULT t1_seq.NEXTVAL,
  description VARCHAR2(30)
);
Redheaded answered 9/8, 2013 at 18:37 Comment(2)
More detail in my question: #31546558Blois
Can this apply in Oracle 11g and below?Fionnula
L
8

I for myself prefer Lukas Edger's solution.

But you might want to know there is also a function SYS_GUID which can be applied as a default value to a column and generate unique ids.

you can read more about pros and cons here

Littrell answered 16/5, 2012 at 7:46 Comment(1)
That's a nice post about SYS_GUID()Navicular
S
3

You can use Oracle's SQL Developer tool to do that (My Oracle DB version is 11). While creating a table choose Advanced option and click on the Identity Column tab at the bottom and from there choose Column Sequence. This will generate a AUTO_INCREMENT column (Corresponding Trigger and Squence) for you.

Slapjack answered 8/6, 2015 at 8:27 Comment(0)
P
2

In Oracle 12c you can also declare an identity column

CREATE TABLE identity_test_tab (
  id          NUMBER GENERATED BY DEFAULT ON NULL AS IDENTITY,
  description VARCHAR2(30)
);

examples & performance tests here ... where, is shorts, the conclusion is that the direct use of the sequence or the new identity column are much faster than the triggers.

Possum answered 11/1, 2016 at 11:43 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.