Оказа се достатъчно лесно:
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
(благодаря на Мат Стром за корекцията!)