Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Auto-incrementing primary key?

Re: Auto-incrementing primary key?

From: mark tomlinson <marktoml_at_gdi.net>
Date: 1998/01/14
Message-ID: <34be244e.169300050@newshost.us.oracle.com>#1/1

On Wed, 14 Jan 1998 13:33:57 -0500, Jerry Cunningham <gcunning_at_census.gov> wrote:

You could do the following:

Lets create a table foo:

create table foo (SEQ number, DATA varchar2);

and now a sequence:

create sequence foo_idx;

and now a trigger for the table:

create or replace trigger foo_seq_ins
before insert on foo
for each row
begin
select foo_idx.nextval into :new.seq from dual; end;

now a SQL statement such as:
INSERT INTO FOO (DATA) VALUES ('TEST'); will automatically generate the SEQ column for you...

-mark

>A colleague of mine is developing an application that will be accessing
>both an Oracle and a Sybase SQLAnywhere database. The SQLAnywhere
>database has what it calls an "Identifier Field" which is an
>automatically incremented primary key. Does Oracle have anything like
>this?
>
>With Oracle's sequences, you have to explicitly insert the NEXTVAL from
>the sequence, correct? Is there any way that Oracle can automatically do
>
>this? Another DBA told us that she might have heard of something called
>an "auto-increment constraint" (or something like that).
>
>As always, thanks for your help.
>
>
>- Jerry
Received on Wed Jan 14 1998 - 00:00:00 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US