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: beginner needs help

Re: beginner needs help

From: Gavin Johnson <gavin.johnson_at_bbc.co.uk>
Date: Tue, 29 Jun 1999 17:26:22 +0000
Message-ID: <377901BE.AF1F25B5@bbc.co.uk>


lasteyrie_at_iname.com wrote:
>
> I'm new to Oracle and i have to use SQL Plus. My problem is
> simple : i have to get informations about tables (how many fields,
> length of each one...), but i don't know the name of my table. can you
> give me the command i have to use to do those things, or if it's not
> possible :
> - list all the databases
> - list tables' names of my databases
> - get tables' fields. (i found describe but i'm not sure)
>

I would do this

select * from user_catalog

won't give you databases but will give you tables, constraints and things. When you spot a table that looks promising, try

describe table_thingy

for the gore. Received on Tue Jun 29 1999 - 12:26:22 CDT

Original text of this message

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