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: complex update

Re: complex update

From: Martin T. <bilbothebagginsbab5_at_freenet.de>
Date: 10 Jul 2006 23:52:15 -0700
Message-ID: <1152600735.068273.198020@75g2000cwc.googlegroups.com>


utefan001_at_gmail.com wrote:
> I have an update that is just not working. When I run it on the latest
> oracle 9i release SQL Plus returns this error.
>
> 01732 "data manipulation operation not legal on this view"
>
> Note that NONE of the tables used below are views. I know I should
> provide more details, but I should also get 3 hours of sleep tonight.
>
> update (
> select jc.llm as foo, sum(act.cost_amt) bar
> FROM prod.je_sub js,
> ...
>

You are actually using a view here - an inline view that you are trying to update.

> AND act.task_id = ' 3'
> group by jc.llm)
>

As far as I know it is not possible to update a View (your inline view) that contains a group by clause.

best,
Martin Received on Tue Jul 11 2006 - 01:52:15 CDT

Original text of this message

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