I'm with Pavb on this, except I would like to offer one more possible solution. The database was abducted by aliens. I'm not saying it must have happened only that it hasn't yet been ruled out.
Perhaps if you looked at the following two queries the real answer might jump out at you. Specifically look at the dba_objects view, and the created and last ddl columns.
Code:
select *
from dba_sequences
where sequence_owner='SCHEMA'
order by 1,2;
Code:
select *
from dba_objects
where owner='SCHEMA'
and object_type='SEQUENCE'
and object_name='SEQUENCENAME';
Bookmarks