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

Home -> Community -> Usenet -> c.d.o.server -> Re: Other commands instead of "show tables"?

Re: Other commands instead of "show tables"?

From: Rene Nyffenegger <rene.nyffenegger_at_gmx.ch>
Date: 23 Oct 2003 07:37:03 GMT
Message-ID: <bn80eu$ua9pv$1@ID-82536.news.uni-berlin.de>

> Hello
> I ask your pardon if this is not the proper NG for my problem.
>
> My problem:
> I,ve got a program (wage accounting) which can be administrated by
> "sql talk for Windows" (Centura I think, but there I didn't find any
> hint)
> I can connect to my database and 'select' works fine *if I know* the
> name of the table. Unforunately I only could guess the name of *one*
> table.
> "show tables;" doesn't work. This is the errormessage:
>
> (05034 TLK ISH Invalid show command
>
> Reason: Attempting a SHOW command and the type of SHOW indicated
> by the
> keyword immediately following the SHOW is invalid or
> misspelled.
>
> Remedy: Correct the SHOW command.)
>
> and this:
> (
> show tables
> ^
> Error: Invalid show command
> )
> As I'm not very familiar with SQL (just some MySQL) I don't know where
> to make enquiries.
>
> Any hints? At least the correct NG where I can ask?

select table_name from user_tables;

select table_name, owner from all_tables;

select table_name, owner from dba_tables where owner not in ('SYSTEM','SYS'); hth
Rene

-- 
  Rene Nyffenegger
  http://www.adp-gmbh.ch
Received on Thu Oct 23 2003 - 02:37:03 CDT

Original text of this message

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