oracle reset sequence

Solutions on MaxInterview for oracle reset sequence by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "oracle reset sequence"
Cassandre
04 Sep 2019
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