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: Finding next number in custom sequence

Re: Finding next number in custom sequence

From: FC <flavio_at_tin.it>
Date: Tue, 07 May 2002 19:47:10 GMT
Message-ID: <2bWB8.13638$zW3.322530@news1.tin.it>


select greatest(nvl(mod(max(seq_num) + 1, 2048), 0), 1) from your_table where greatest(mod(seq_num + 1, 2048), 1) not in (select seq_num from your_table)
and destination = 'something'

If you had begun the sequence with 0, it would have been easier :-)

Bye,
Flavio Received on Tue May 07 2002 - 14:47:10 CDT

Original text of this message

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