oracle alter sequence restart start with

Solutions on MaxInterview for oracle alter sequence restart start with by the best coders in the world

showing results for - "oracle alter sequence restart start with"
Meera
26 Apr 2016
1SELECT LAST_NUMBER FROM ALL_SEQUENCES WHERE SEQUENCE_NAME = 'seq_name';
2
3ALTER SEQUENCE seq_name INCREMENT BY 100;	-- Value to reach desired value - 1
4SELECT seq_name.nextval FROM dual;			-- Reinitialize value to desired
5ALTER SEQUENCE seq_name INCREMENT BY 1;		-- Back to init step