Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> Re: PL/SQL Wrapper Costs - Lessons Learned

Re: PL/SQL Wrapper Costs - Lessons Learned

From: Jared Still <jkstill_at_gmail.com>
Date: Tue, 26 Jun 2007 13:07:57 -0700
Message-ID: <bf46380706261307x56330ad1tb3352dc9af6304a5@mail.gmail.com>


On 6/20/07, Peter Sylvester <peters_at_mitre.org> wrote:
>
>
> 3) Using "singleton" SQL (or procedures) to return data associated with
> individual records is another *really bad idea*, especially when you
> expect to be doing this for a lot of records. Using a client side cursor
> loop (ResultSet loop for Java folks) can result in 10X client side
> performance improvement over running many singleton select statements.
> (and 20X performance over singleton PL/SQL wrapper procs). The gains
> made here are primarily in the reduction of the quantity of database
> calls and SQL*Net traffic.
>
>

Thanks for the summary Peter.

OOP apps are inherently chatty.

DBA's are not the only admins to complain about this.

Network admins are not known to be fond of chatty apps.

-- 
Jared Still
Certifiable Oracle DBA and Part Time Perl Evangelist

--
http://www.freelists.org/webpage/oracle-l
Received on Tue Jun 26 2007 - 15:07:57 CDT

Original text of this message

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