Mar*_*bak 103
select sequence_owner, sequence_name from dba_sequences;
DBA_SEQUENCES -- all sequences that exist
ALL_SEQUENCES -- all sequences that you have permission to see
USER_SEQUENCES -- all sequences that you own
Run Code Online (Sandbox Code Playgroud)
请注意,根据定义,由于您是从中返回的所有序列的所有者USER_SEQUENCES,因此没有SEQUENCE_OWNER列USER_SEQUENCES.
Pet*_* B. 39
您可能没有dba_sequences的权限.所以你总能做到:
select * from user_sequences;
Run Code Online (Sandbox Code Playgroud)