Det viste sig at være nemt nok:
create table mytable (
id bigint not null constraint DF_mytblid default next value for mainseq,
code varchar(20) not null
)
eller hvis tabellen allerede er oprettet:
alter table mytable
add constraint DF_mytblid
default next value for mainseq
for id
(tak Matt Strom for rettelsen!)