Oracle query all sequences
--View all sequences of the current user
select SEQUENCE_OWNER,SEQUENCE_NAME from dba_sequences where sequence_owner='username';
--Query the total number of sequences of the current user
select count(*) from dba_sequences where sequence_owner='username';
--Example:
select SEQUENCE_OWNER,SEQUENCE_NAME from dba_sequences
where sequence_owner=’WGB;
select count(*) from dba_sequences where sequence_owner=’ WGB’;
SQL> select SEQUENCE_OWNER,SEQUENCE_NAME from dba_sequences
2 where sequence_owner='WGB';
SEQUENCE_OWNER SEQUENCE_NAME
------------------------------ ------------------------------
WGB SEQ_FOR_TEST
WGB SEQ_WGB_ADMIN
WGB SEQ_WGB_COMMON
WGB SEQ_WGB_COMMONS
WGB SEQ_WGB_CONTACTOR
WGB SEQ_WGB_FACES
WGB SEQ_WGB_MEMBER
WGB SEQ_WGB_MESSAGE
WGB SEQ_WGB_MONEY_USER
9 rows have been selected.
SQL> select count(*) from dba_sequences where sequence_owner='WGB';
COUNT(*)
----------
9
Notes:
1. Must log in as an administrator;
2. sequence_owner must be in capital, regardless of whether your username is capitalized or not. Only capitalization can be recognized.
References:
/question/140904731