Al Programming
Free source code programming in C#, VB.Net, Java, SQL
Tuesday, November 19, 2013
Get list of all tables in Oracle
Oracle
>
List of all tables
See all the tables that your account has access
SELECT
owner
,
table_name
FROM
all_tables
See table that you own
SELECT
table_name
FROM
user_tables
‹
›
Home
View web version