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: # of rows affected by a SQL statement

Re: # of rows affected by a SQL statement

From: Richard Dilnot <richard.dilnot_at_lineone.net>
Date: Thu, 24 Feb 2000 13:19:38 -0000
Message-ID: <893b4j$ikm$1@supernews.com>


You can use the implicit SQL cursor that is used by Oracle for anonymous SQL statements like a normal explicit cursor e.g.

delete from mytable;
if sql%rowcount > 10 then
....
end if;

or

update my_table set acolumn = 'x' where acolumn = 'y';

if sql%notfound then
...
end if;

Rich.

jdefreitas7176_at_my-deja.com wrote in message <891asn$8b8$1_at_nnrp1.deja.com>...
>Hi All.
>
>I was wondering if there was a system variable
>in Oracle that would display the number of rows
>affected by a SQL statement. I don't mean rownum;
>I just want to execute an UPDATE, and then see
>how many rows were affected. Thanks!
>
>
>Sent via Deja.com http://www.deja.com/
>Before you buy.
Received on Thu Feb 24 2000 - 07:19:38 CST

Original text of this message

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