Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
Write a query to display a list of tables owned by the user.
Home
Oracle
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;
...