Login
Remember
Register
Ask a Question
Write a query to display a list of tables owned by the user.
+1
vote
asked
Jul 29, 2020
in
Oracle
by
Hodge
Q. Write a query to display a list of tables owned by the user.
#oracle
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jul 29, 2020
by
Hodge
Ans is
SELECT tablespace_name, table_name FROM user_tables;
...