Re: init script or procedure

From: Merlin Moncure <mmoncure(at)gmail(dot)com>
To: Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com>
Cc: "Gauthier, Dave" <dave(dot)gauthier(at)intel(dot)com>, "pgsql-general(at)postgresql(dot)org" <pgsql-general(at)postgresql(dot)org>
Subject: Re: init script or procedure
Date: 2011-08-24 14:54:29
Message-ID: CAHyXU0xFp6qY_+k_RCfj0ZVBAfjLRkHEo_znPBiT=ppy4TGHEA@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Wed, Aug 24, 2011 at 9:51 AM, Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com> wrote:
> 2011/8/24 Merlin Moncure <mmoncure(at)gmail(dot)com>:
>> On Wed, Aug 24, 2011 at 9:30 AM, Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com> wrote:
>>> Hello
>>>
>>> 2011/8/24 Gauthier, Dave <dave(dot)gauthier(at)intel(dot)com>:
>>>> Does PG support the use of an init script or procedure?  I'm looking for
>>>> something that'll run unconditionally every time someone makes a DB
>>>> connection.  This script will create a temp table and stuff some data in it
>>>> for general use within that session.
>>>>
>>>
>>> no, there is nothing similar. You have to call a own procedure after
>>> login explicitly
>>
>> We could really use this.   It's kinda sorta possible to script SQL on
>> connection close via C hook through dblink but not on session startup.
>> It's not always possible for the client know when a backend session is
>> fired up -- for example in connection pools.

[snip]
> . This is not task for server,

I disagree. Other databases have them (see
http://msdn.microsoft.com/en-us/library/bb326598.aspx) and they are
highly used and useful.

merlin

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Pavel Stehule 2011-08-24 15:06:14 Re: init script or procedure
Previous Message Pavel Stehule 2011-08-24 14:51:08 Re: init script or procedure