Oracle How to view all tables?
First open the DOS window and enter "SQLPLUS";
Then use the SYS user as DBA Log in to the Oracle database with your identity;
#Finally execute the SQL statement "select * from user_tables" to view it.
select * from user_tables
Recommended tutorial: "Oracle Tutorial"
The above is the detailed content of How to view all tables in Oracle?. For more information, please follow other related articles on the PHP Chinese website!