Russ,
Thanks for the info. What I really am looking for is how to find out
about any custom sequences that have been created. I found some code I think
will work but I haven’t tested it yet.
select substr(sequence_owner,1,10) "OWNER",
substr(sequence_name,1,25) "SEQ NAME",
substr(to_char(min_value),1,3) "MIN",
max_value "MAX",
increment_by "INC",
cache_size "CACHE",
last_number "LAST NUM"
from all_sequences
order by 1 asc, 2 asc;
Brian