Expert
How to list all the sequence in schema with size?
Posted February 1st, 2008 by administrator
All the oracle sequences are stored in a table called "dba_sequences".
The following query selects the min, max ,current value along with the length current value and orders it by the length in desc.
select SEQUENCE_NAME,MIN_VALUE,MAX_value,LAST_NUMBER,length(LAST_NUMBER)
from dba_sequences