修改sequencealter sequence test_SEQ increment by 1000 nocacheselect test_SEQ.nextval from dualalt
修改sequence
alter sequence test_SEQ increment by 1000 nocache;
select test_SEQ.nextval from dual;
alter sequence test_SEQ increment by 1 cache 20;
修改sequence
alter sequence test_SEQ increment by 1000 nocache;
select test_SEQ.nextval from dual;
alter sequence test_SEQ increment by 1 cache 20;