Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Create Database Script..
Joel Garry wrote:
> Daniel Morgan <damorgan_at_x.washington.edu> wrote in message news:<1094254962.59351_at_yasure>...
>
>>Joel Garry wrote: >> >> >>>arijitchatterjee123_at_yahoo.co.in (Arijit Chatterjee) wrote in message news:<ea01504d.0409030431.aae3d7e_at_posting.google.com>... >>> >>> >>>>Respected Sir, >>>>when I writing >>>>======================== >>>>SQL> select * from tab; >>>>select * from tab >>>> * >>>>ERROR at line 1: >>>>ORA-00942: table or view does not exist >>>>======================= >>>>why this error is coming. >>>>Regards >>>>Arijit Chatterjee >>> >>> >>>Try select table_name from all_tables to see what you can select from. >>> >>>jg >>>-- >>>@home.com is bogus. >>>Verrrry Suspicious: >>>http://www.signonsandiego.com/uniontrib/20040902/news_1b2oracle.html >> >>Likely but not necessesarily. A table will show up in all_tables if >>you have been granted any privilege. So it could be there because you >>have been granted insert: Which does not mean you could ever select.
There isn't:
1 SELECT object_name, object_type
2 FROM dba_objects
3* WHERE object_name = 'TAB'
SQL> /
OBJECT_NAME
-- Daniel A. Morgan University of Washington damorgan_at_x.washington.edu (replace 'x' with 'u' to respond)Received on Tue Sep 07 2004 - 19:09:48 CDT
![]() |
![]() |