Searching in all Tables [message #374873] |
Mon, 09 July 2001 08:05 |
Kyle Haeussler
Messages: 1 Registered: July 2001
|
Junior Member |
|
|
I recently acquired administrator rights for this website that i'm going to maintain. Is there a command that I can enter to get the names of all the tables, all the columns and the fields and how they are defined? Please let me know.
|
|
|
Re: Searching in all Tables [message #374874 is a reply to message #374873] |
Mon, 09 July 2001 08:37 |
cl
Messages: 10 Registered: April 2001
|
Junior Member |
|
|
Get the names of all tables:
select table_name, owner from all_tables;
Or
select * from cat;
Get individual table column information:
desc table_name
EXAMPLE
SQL> desc dual
Name ....... Null? .......Type
---------- -------- ----------
DUMMY ............ VARCHAR2(1)
|
|
|
|