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

Home -> Community -> Usenet -> c.d.o.misc -> Re: oracle 8 and auto increment

Re: oracle 8 and auto increment

From: Thorsten Ottosen <nesotto_at_cs.auc.dk>
Date: Tue, 1 Mar 2005 15:40:09 +0100
Message-ID: <42247ed2$0$29281$14726298@news.sunsite.dk>


"stephen O'D" <stephen.odonnell_at_gmail.com> wrote in message news:1109685662.584256.27320_at_l41g2000cwc.googlegroups.com...
| Something like this will work:-
|
| create sequence mytestseq start with 1 increment by 1 minvalue 1;
|
| create table t (id integer, text varchar2(50));
|
| set serveroutput on
|
| declare
| new_id integer;
| begin
| insert into t (id, text) values (mytestseq.nextval,'test entry')
| returning id into new_id;
|
| dbms_output.put_line (new_id);
| end;

Thanks! I was able extract the number by

select mytestseq.currval from dual;

-Thorsten Received on Tue Mar 01 2005 - 08:40:09 CST

Original text of this message

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