Het bleek eenvoudig genoeg te zijn:
create table mytable (
id bigint not null constraint DF_mytblid default next value for mainseq,
code varchar(20) not null
)
of als de tabel al is aangemaakt:
alter table mytable
add constraint DF_mytblid
default next value for mainseq
for id
(bedankt Matt Strom voor de correctie!)