Si è rivelato abbastanza facile:
create table mytable (
id bigint not null constraint DF_mytblid default next value for mainseq,
code varchar(20) not null
)
oppure se la tabella è già stata creata:
alter table mytable
add constraint DF_mytblid
default next value for mainseq
for id
(grazie Matt Strom per la correzione!)