Re: [PERFORMANCE] Stored Procedures - Mailing list pgsql-performance

From Rikard Pavelic
Subject Re: [PERFORMANCE] Stored Procedures
Date
Msg-id 43D130EF.3010205@zg.htnet.hr
Whole thread Raw
Responses Re: [PERFORMANCE] Stored Procedures  ("Jim C. Nasby" <jnasby@pervasive.com>)
List pgsql-performance
>>Hi,
>>
>> Will simple queries such as "SELECT * FROM blah_table WHERE tag='x'; work any
>> faster by putting them into a stored procedure?

>
>IMHO no, why do you think so? You can use PREPARE instead, if you have many
>selects like this.


I tought that creating stored procedures in database means
storing it's execution plan (well, actually storing it like a
compiled object). Well, that's what I've learned couple a years
ago in colledge ;)

What are the advantages of parsing SP functions every time it's called?

My position is that preparing stored procedures for execution solves
more problems, that it creates.
And the most important one to be optimizing access to queries from
multiple connections (which is one of the most important reasons
for using stored procedures in the first place).

Best regards,
    Rikard


pgsql-performance by date:

Previous
From: Antoine
Date:
Subject: query stopped working after tables > 50000 records
Next
From: Tom Lane
Date:
Subject: Re: SELECT MIN, MAX took longer time than SELECT COUNT, MIN, MAX