Re: functions vs embedded SQL

Поиск
Список
Период
Сортировка
От Culley Harrelson
Тема Re: functions vs embedded SQL
Дата
Msg-id sbe7e32c.007@pgn.com
обсуждение исходный текст
Ответ на functions vs embedded SQL  ("Culley Harrelson" <Culley_Harrelson@pgn.com>)
Список pgsql-general
oh typo-- I mean where language = sql or language = plpgsql
 
In MS SQL Server you get a performance kick when using stored procs because the optimizer doesn't have to figure out the best way to execute the query.  The query plan is saved and when the procedure is called it executes the saved plan.  Any such similar setup in Postgres?  Generally I find that embedded sql makes for a more maintainable/portable application but deep down inside I like write stored procedures/functions so I'm looking for an excuse :)
 
culley


>>> Jeff Davis <list-pgsql-general@dynworks.com> 11/06/01 12:51PM >>>
It seems you might be referring to PL/PgSQL (not SQL/pgsql).
All the "PL"s , or Procedural Languages, are server-side programming, JDBC
and php are client-side.

PLs are used when you need the database to do some processing before it sends
the response to the client. PLs are most helpful when used to reduce the
number of seperate transactions a client needs to execute to perform one
function, or reduce the amount of unnecessary data that is sent to the client
(data that the client only needs as an intermediate step toward retrieving
the required data, or inserting the required data).

Moreover, PLs can be aggregate functions, or functions that operate on all of
the records in the result set. This can be very helpful if, for example, you
are performing a statistical calculation on the values in a column. You would
only have to return the result to the client, the server can do the
calculating (which is much more efficient, especially in terms of
communication between the client and the sever).

You need client programming either way. Without a client, the server is
useless :)

Regards,
    Jeff Davis



On Tuesday 06 November 2001 11:56 am, you wrote:
> Does anyone have an opinion on the performance benefits/drawbacks on using
> SQL/pgsql functions rather than embedding SQL directly in your code?  I use
> JDBC and php for different projects...
>
> Culley

В списке pgsql-general по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Use of Serial Datatype and Sequence Issue
Следующее
От: Keary Suska
Дата:
Сообщение: Re: Use of Serial Datatype and Sequence Issue