यह काफी आसान निकला:
create table mytable (
id bigint not null constraint DF_mytblid default next value for mainseq,
code varchar(20) not null
)
या यदि तालिका पहले ही बन चुकी है:
alter table mytable
add constraint DF_mytblid
default next value for mainseq
for id
(सुधार के लिए धन्यवाद मैट स्ट्रोम!)