alter sequence set current value oracle

Solutions on MaxInterview for alter sequence set current value oracle by the best coders in the world

showing results for - "alter sequence set current value oracle"
Jonas
23 Jun 2020
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