オラクル シーケンスは、自動増加する数値を返すように設計されています。入れた値プールから返されるカスタマイズされたシーケンスを実装できるのではないかと思っているので、何を返すことが期待されるかをシーケンスに伝えることができます。
とにかくこれを実装するには?または、トリガー、オラクル関数などを追加するなどの代替手段はありますか?
または、値を保存するテーブルを使用することもできますが、orrace シーケンスのように最適なパフォーマンスを実現する方法は次のとおりです。
I have this, but not sure is it the best one.
create table your_table(
gap_from int,
gap_to int
);
insert into your_table values(99999, 9998888);
insert into your_table values(2, 7);
insert into your_table values(200, 10000);
insert into your_table values(10001, 300000);
create table2 as select
gap_from,
1 + nvl(sum(gap_to - gap_from + 1) over (order by gap_from rows between unbounded preceding and 1 preceding), 0) as seq_from,
sum(gap_to - gap_from + 1) over (order by gap_from) as seq_to
from your_table;
create sequence your_new_seq;
create or replace function get_PK_inside_gap return number as
new_seq_val number;
PK_inside_gap number;
begin
select your_new_seq.nextval into new_seq_val from dual;
execute immediate '
select
new_seq_val + gap_from - seq_from
from
(select :1 as new_seq_val from dual)
join (
table2
) on new_seq_val between seq_from and seq_to'
into PK_inside_gap using new_seq_val;
return PK_inside_gap;
end;