How to use Querying the ALL_USERS view In SQL

Let’s Create a PL/SQL script to list all the schemas in an Oracle Database. The script should query the `ALL_USERS` view to fetch the schema names and iterate through the result set and output each schema name.

DECLARE
v_schema_name VARCHAR2(100);
BEGIN
FOR user_rec IN (SELECT username FROM all_users) LOOP
v_schema_name := user_rec.username;
DBMS_OUTPUT.PUT_LINE('Schema: ' || v_schema_name);
END LOOP;
END;
/

Output:

Schema: SYS
Schema: AUDSYS
Schema: SYSTEM
Schema: SYSBACKUP
Schema: SYSDG
Schema: SYSKM
Schema: SYSRAC
Schema: OUTLN
Schema: XS$NULL
Schema: GSMADMIN_INTERNAL
Schema: GSMUSER
Schema: GSMROOTUSER
Schema: DIP
Schema: REMOTE_SCHEDULER_AGENT
Schema: DBSFWUSER
Schema: ORACLE_OCM
Schema: SYS$UMF
Schema: DBSNMP
Schema: APPQOSSYS
Schema: GSMCATUSER
Schema: GGSYS
Schema: XDB
Schema: ANONYMOUS
Schema: WMSYS
Schema: MDDATA
Schema: OJVMSYS
Schema: CTXSYS
Schema: ORDSYS
Schema: ORDDATA
Schema: ORDPLUGINS
Schema: SI_INFORMTN_SCHEMA
Schema: MDSYS
Schema: OLAPSYS
Schema: DVSYS
Schema: LBACSYS
Schema: DVF
Schema: HR
Schema: JAGAN
Schema: QWERTY

PL/SQL procedure successfully completed.

The above output shows the names of the schemas available in Oracle Database instance.

How to Show a List of Databases in PL/SQL?

Managing databases is a fundamental aspect of database administration and development. In Oracle Database, schemas represent logical containers for database objects like tables, views, procedures and functions. PL/SQL is the procedural extension of and used in Oracle Database and provides powerful capabilities for database programming and management.

In this article, We will learn about How to Show or List Databases by understanding the various methods with the help of examples and so on.

Similar Reads

PL/SQL Show/List Databases

Listing all schemas in an Oracle Database can be a common requirement for database administrators and developers. PL/SQL doesn’t have a direct command for this task but by querying system views, we can achieve this goal. Below is the method which helps us to Show or List the Databases:...

1. Using Querying the ALL_USERS view

Let’s Create a PL/SQL script to list all the schemas in an Oracle Database. The script should query the `ALL_USERS` view to fetch the schema names and iterate through the result set and output each schema name....

2. Using Querying the DBA_USERS View

The DBA_USERS view provides a more comprehensive view of all user accounts in the database, along with their statuses. Let’s Develop a PL/SQL script to retrieve and display the names and account statuses of all user schemas in an Oracle Database. The script should query the DBA_USERS view, iterate through the results and output each schema name along with its corresponding account status....

Conclusion:

Overall , using the PL/SQL to interact with the schemas in Oracle Database provides the powerful means to manage and manipulate the database objects within the different logical containers. While PL/SQL doesn’t have offer to direct command to list all databases, it allowed to us query system views like ALL_USERS to retrieve the information about the schemas. By PL/SQL procedural capabilities, we can iterate the result set returned by these queries and process each schema name as needed....

Contact Us