Last active
April 27, 2020 00:39
-
-
Save StuffbyYuki/5b0c8eb4195533b83ab3ce9c4dcc1e94 to your computer and use it in GitHub Desktop.
SQL:Oracle - list all schema names
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select username as schema_name | |
from sys.all_users | |
order by username; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment