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: Yet another small question....

Re: Yet another small question....

From: Sarah Sikes <sikes_at_erols.com>
Date: 1998/03/01
Message-ID: <34f8ee10.47002200@news.erols.com>#1/1

jeppe.brynjulfsen_at_eunet.no (Jeppe Sverdrup Brynjulfsen) wrote:

>I am used to the command
>SELECT * FROM user_tables; to list all the tables in the connected
>database. But I have no user_tables in the system. I thought there
>always was a user_tables in the database. How can I list up all the
>tables when I do not have a user_tables?
>
>
>Thank you very much, and have a nice day!
>

Did you get no rows selected or "object user_tables does not exist" ?

If you got the first its because you don't have any tables. If you got the second its because the synonym for the SYS.USER_TABLES view was not created. Do a  

desc sys.user_tables

if its there then

create public synonym user_tables for sys.user_tables;

run the command as sys Received on Sun Mar 01 1998 - 00:00:00 CST

Original text of this message

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