Hi,
I have the following definition for an object :
Select : SUM ( T1.NO_COPIES)
Where : T1.rowid in ( select max ( T1_Alias.rowid ) from T1_Alias
where T1_alias.Id = T1.Id )
T1 has five rows and they are 10 , 2 : 10, 2: 10,2: 11,3: 12,1.
The objective of the above select is to show 2 for Id 10, 3 for Id 11 and 1 for Id 12.
When I parse the above object definition, I get ORA-00942 : Table or View does not exist message.
Any help would be really appreciated.
Select : SUM ( T1.NO_COPIES)
Where : T1.rowid in ( select max ( T1_Alias.rowid ) from T1 T1_Alias
where T1_alias.Id = T1.Id )
Peter
Ramesh Narayanan ranaraya@IEEE.ORG 30/07/98 20:48:04 >>>
Hi,
I have the following definition for an object :
Select : SUM ( T1.NO_COPIES)
Where : T1.rowid in ( select max ( T1_Alias.rowid ) from T1_Alias
where T1_alias.Id = T1.Id )
T1 has five rows and they are 10 , 2 : 10, 2: 10,2: 11,3: 12,1.
The objective of the above select is to show 2 for Id 10, 3 for Id 11 and 1 for Id 12.
When I parse the above object definition, I get ORA-00942 : Table or View does not exist message.
Any help would be really appreciated.