Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: List of Tables on a database

Re: List of Tables on a database

From: <davide_at_yahoo.com>
Date: 3 Jan 2002 08:47:38 GMT
Message-ID: <a115r7$ms1sa$2@ID-18487.news.dfncis.de>


Hassen AHLAMINE <cainmaro_at_hotmail.com> wrote: > I'm looking for a way to gather:
> - A list of all tables created in a database since the database's name,

connect to the database, then use

SELECT TABLE_NAME FROM ALL_TABLES
> - A list of all columns since the table's name,

SELECT COLUMN_NAME,DATA_TYPE FROM ALL_TAB_COLUMNS WHERE TABLE_NAME=.... or in SQL*Plus

DESCRIBE <table_name>

See the documentation of Oracle.

Davide Received on Thu Jan 03 2002 - 02:47:38 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US