select MAXSYSACCEPT.nextval from dual; (序列号检索 增1)
alter sequence MAXSYSACCEPT increment by 1 cache 20; (序列号设置 增1)
alter sequence MAXSYSACCEPT increment by 50 nocache; (序列号设置 增50
select MAXSYSACCEPT.nextval from dual; (序列号检索 增1)
alter sequence MAXSYSACCEPT increment by 1 cache 20; (序列号设置 增1)
alter sequence MAXSYSACCEPT increment by 50 nocache; (序列号设置 增50