Oracle Archives
Learn different topics related to ORACLE.
Can we reset sequence Oracle?
First, let's start with a definition.
Sequence Oracle is a term used in database technology …
How do you change the maximum value of a sequence in Oracle?
SELECT MAX(sequence_no)
FROM sequence;
The MAX() function returns the maximum value in a sequence.