Published
- 1 min read
show tables in schema oracle
The solution for this is noted below
show tables in schema oracle
Solution
SELECT TABLE_NAME FROM ALL_TABLES WHERE OWNER = 'SCHEMA_NAME';
--GET TABLE NAMES OF A SCHEMA IN ORACLE
Try other methods by searching on the site. That is if this doesn’t work