修改sequence
alter sequence test_SEQ increment by 1000 nocache;
select test_SEQ.nextval from dual;
alter sequence test_SEQ increment by 1 cache 20;
发布时间: 2012-07-31 12:33:46 作者: rapoo
修改sequence
alter sequence test_SEQ increment by 1000 nocache;
select test_SEQ.nextval from dual;
alter sequence test_SEQ increment by 1 cache 20;