From: | Achilleus Mantzios <achill(at)matrix(dot)gatewaynet(dot)com> |
---|---|
To: | Richard Huxton <dev(at)archonet(dot)com> |
Cc: | abief_ag_-postgresql(at)yahoo(dot)com, <pgsql-sql(at)postgresql(dot)org> |
Subject: | Re: session_id |
Date: | 2004-11-17 14:33:03 |
Message-ID: | Pine.LNX.4.44.0411171629170.8373-100000@matrix.gatewaynet.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
O Richard Huxton έγραψε στις Nov 17, 2004 :
> Riccardo G. Facchini wrote:
> > hi all,
> >
> > is there a way to determine the session id on a database session?
> >
> > I would need to have a unique number whenever a session is started, and
> > have this available as a function or view result.
Why not SELECT pg_backend_pid();
??
>
> Add a new sequence to your database:
> CREATE SEQUENCE my_session_id;
>
> Then, at the start of every session:
> SELECT nextval('my_session_id');
>
> and whenever you need the value:
> SELECT currval('my_session_id');
>
> Sequences are concurrency-safe, so you're OK with multiple clients. They
> return INT8 values, so you should be good for unique numbers for a while.
>
> The only thing is, you need to remember to call nextval() every time you
> connect.
>
> HTH
>
--
-Achilleus
From | Date | Subject | |
---|---|---|---|
Next Message | Richard Huxton | 2004-11-17 14:44:51 | Re: session_id |
Previous Message | Riccardo G. Facchini | 2004-11-17 14:27:32 | Re: session_id |