select * from user_sequencesrem
select SV_ID_SEQUENCE.nextval curr_val from dual select
alter sequence SV_ID_SEQUENCE increment by 1000
select SV_ID_SEQUENCE.nextval from dual;
alter sequence SV_ID_SEQUENCE increment by 1;
select SV_ID_SEQUENCE.nextval from dual; next