Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: invalid views
How is your developer fixing this problem? I've had views go invalid in the
past, but if the base table(s) were unchanged, doing a select on the view
always changed its status to valid.
SQL> create table gorp (gorp1 number);
Table created.
SQL> insert into gorp values (5);
1 row created.
SQL> create view gorp5 as (select * from gorp where gorp1 = 5);
View created.
SQL> select * from gorp5;
GORP1
5
1 row selected.
SQL> rename gorp to prog;
Table renamed.
SQL> select * from gorp5;
select * from gorp5
*
ERROR at line 1:
ORA-04063: view "GORP5" has errors
SQL> select object_name , object_type, status from dba_objects where object_name = 'GORP5';
OBJECT_NAME
SQL> RENAME PROG TO GORP; Table renamed.
SQL> select object_name , object_type, status from dba_objects where object_name = 'GORP5';
OBJECT_NAME
SQL> select * from gorp5;
GORP1
5
1 row selected.
-- http://www.freelists.org/webpage/oracle-lReceived on Fri Sep 22 2006 - 08:45:24 CDT
![]() |
![]() |