Re: Prepared statements vs. Stored Procedures - Mailing list pgsql-performance

From Tobias Brox
Subject Re: Prepared statements vs. Stored Procedures
Date
Msg-id 20050621204057.GI22746@oppetid.no
Whole thread Raw
In response to Prepared statements vs. Stored Procedures  (Oliver Crosby <ryusei@gmail.com>)
List pgsql-performance
[Oliver Crosby - Tue at 03:46:03PM -0400]
> I'm hoping someone can offer some advice here.
>  I have a large perl script that employs prepared statements to do all its
> queries. I'm looking at using stored procedures to improve performance times
> for the script. Would making a stored procedure to replace each prepared
> statement be worthwhile? If not, when could I use stored procedures to
> improve performance?
>  Thanks in advance.

My gut feeling says that if you are only doing read-operations there are
none or almost none benefits with stored procedures.

One argument we used for not looking much into stored procedures, was
that we expect the database to become the bottleneck if we get too much
activity.  At the application side, we can always expand by adding more
boxes, but the database, beeing the hub of the system, cannot easily be
expanded (we can tweak and tune and upgrade the whole box, and
eventually at some point we believe we will need to put old data at a
separate database, and also make a replica for heavy report queries)

If you have loads of data going from the database to the application, a
little bit of light processing done on the data, and then data going
back to the database server, then I guess stored procedures would be
better.

pgsql-performance by date:

Previous
From: Paul Ramsey
Date:
Subject: Re: Querying 19million records very slowly
Next
From: Michael Fuhr
Date:
Subject: Re: Limit clause not using index