Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Possible Use of a Cursor
I changed the SELECT statement to add a "," after "from w100.papp"
select papp.INSTRUCTION_NR,papp.MACHINE_PROC,papp.POSITIONS_NR
from w100.papp,
(select first_value(papp.MACHINE_PROC)
over (partition by papp.INSTRUCTION_NR order by papp.POSITIONS_NR)
first_MACHINE_PROC from tab)
where papp.MACHINE_PROC in (3600,3400,3430)
But now I get an new error message ORA-00439 saying, "feature not enabled: OLAP Window Functions" Is this a show stopper? Received on Wed Feb 23 2005 - 02:31:49 CST