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: INVALID NESTED VIEWS ORA-00903: invalid table name

Re: INVALID NESTED VIEWS ORA-00903: invalid table name

From: Rene Nyffenegger <rene.nyffenegger_at_gmx.ch>
Date: 15 Feb 2003 08:16:50 GMT
Message-ID: <b2kt1i$1dmeqh$2@ID-82536.news.dfncis.de>

> SQL runs fine on 9.1 but on 9.2.1.0 I receive oracle error stating
> invalid table name.
>
> 1) Extracting the data directly from the view:
>
> select * from customView; (No Problems)
>
> 2) Create a view which pulls from the
>
> Create newView as select * from customView;
>
> 3) select * from newView;
>
> ORA-00903: invalid table name

Your problem is not reproducible with the information you gave: Step 2   ( Create newView as select * from customView; ) is an invalid SQL command, either it should read "create table newView" or "create view newView"

Rene Nyffenegger

-- 
  no sig today
Received on Sat Feb 15 2003 - 02:16:50 CST

Original text of this message

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