timestamp parse error

Started by Tomas Lehutaover 23 years ago124 messageshackersgeneral
Jump to latest
#1Tomas Lehuta
lharp@aurius.sk
hackersgeneral

Hello!

i'm using PostgreSQL 7.2.1 and got strange parse errors..
could somebody tell me what's wrong with this timestamp query example?

PostgreSQL said: ERROR: parser: parse error at or near "date"
Your query:

select timestamp(date '1998-02-24', time '23:07')

example is from PostgreSQL help and certainly worked in previous versions of
pgsql.. but in 7.2.1 it does not. had anything changed and not been updated
in pgsql manuals or is it a bug?

thanx for any help

Tomas Lehuta

#2Stephan Szabo
sszabo@megazone23.bigpanda.com
In reply to: Tomas Lehuta (#1)
hackersgeneral
Re: timestamp parse error

On Fri, 20 Sep 2002, Tomas Lehuta wrote:

Hello!

i'm using PostgreSQL 7.2.1 and got strange parse errors..
could somebody tell me what's wrong with this timestamp query example?

PostgreSQL said: ERROR: parser: parse error at or near "date"
Your query:

select timestamp(date '1998-02-24', time '23:07')

example is from PostgreSQL help and certainly worked in previous versions of
pgsql.. but in 7.2.1 it does not. had anything changed and not been updated
in pgsql manuals or is it a bug?

Presumably it's a manual example that didn't get changed. Timestamp(...)
is now a specifier for the type with a given precision. You can use
"timestamp"(date '1998-02-24', time '23:07') or datetime math (probably
something like date '1998-02-24' + time '23:07' and possibly a cast)

#3Tom Lane
tgl@sss.pgh.pa.us
In reply to: Tomas Lehuta (#1)
hackersgeneral
Re: timestamp parse error

"Tomas Lehuta" <lharp@aurius.sk> writes:

could somebody tell me what's wrong with this timestamp query example?

select timestamp(date '1998-02-24', time '23:07')
PostgreSQL said: ERROR: parser: parse error at or near "date"

example is from PostgreSQL help

From where exactly? I don't see any such example in current sources.

Although you could make this work by double-quoting the name "timestamp"
(which is a reserved word now, per SQL spec), I'd recommend sidestepping
the problem by using the equivalent + operator instead:

regression=# select "timestamp"(date '1998-02-24', time '23:07');
timestamp
---------------------
1998-02-24 23:07:00
(1 row)

regression=# select date '1998-02-24' + time '23:07';
?column?
---------------------
1998-02-24 23:07:00
(1 row)

regards, tom lane

#4Aaron Held
aaron@MetroNY.com
In reply to: Tomas Lehuta (#1)
hackersgeneral
Monitoring a Query

Is there any way to monitor a long running query?

I have stats turned on and I can see my queries, but is there any better
measure of the progress?

Thanks,
-Aaron Held

select current_query from pg_stat_activity;
current_query

<IDLE>
<IDLE>
<IDLE>
<IDLE>
<IDLE> in transaction
FETCH ALL FROM PgSQL_470AEE94
<IDLE> in transaction
select * from "Calls" WHERE "DurationOfCall" = 2.5 AND "DateOfCall" =
'7/01/02' AND ("GroupCode" = 'MIAMI' OR "GroupCode" = 'Salt Lake');
<IDLE>
<IDLE>
<IDLE>

#5Bruce Momjian
bruce@momjian.us
In reply to: Aaron Held (#4)
hackersgeneral
Re: Monitoring a Query

There is pgmonitor:

http://gborg.postgresql.org/project/pgmonitor

---------------------------------------------------------------------------

Aaron Held wrote:

Is there any way to monitor a long running query?

I have stats turned on and I can see my queries, but is there any better
measure of the progress?

Thanks,
-Aaron Held

select current_query from pg_stat_activity;
current_query

<IDLE>
<IDLE>
<IDLE>
<IDLE>
<IDLE> in transaction
FETCH ALL FROM PgSQL_470AEE94
<IDLE> in transaction
select * from "Calls" WHERE "DurationOfCall" = 2.5 AND "DateOfCall" =
'7/01/02' AND ("GroupCode" = 'MIAMI' OR "GroupCode" = 'Salt Lake');
<IDLE>
<IDLE>
<IDLE>

---------------------------(end of broadcast)---------------------------
TIP 2: you can get off all lists at once with the unregister command
(send "unregister YourEmailAddressHere" to majordomo@postgresql.org)

-- 
  Bruce Momjian                        |  http://candle.pha.pa.us
  pgman@candle.pha.pa.us               |  (610) 359-1001
  +  If your life is a hard drive,     |  13 Roberts Road
  +  Christ can be your backup.        |  Newtown Square, Pennsylvania 19073
#6Bruce Momjian
bruce@momjian.us
In reply to: Aaron Held (#4)
hackersgeneral
Re: Monitoring a Query

Aaron Held wrote:

Is there any way to monitor a long running query?

I have stats turned on and I can see my queries, but is there any better
measure of the progress?

Oh, sorry, you want to know how far the query has progressed. Gee, I
don't think there is any easy way to do that. Sorry.

-- 
  Bruce Momjian                        |  http://candle.pha.pa.us
  pgman@candle.pha.pa.us               |  (610) 359-1001
  +  If your life is a hard drive,     |  13 Roberts Road
  +  Christ can be your backup.        |  Newtown Square, Pennsylvania 19073
#7Jean-Luc Lachance
jllachan@nsd.ca
In reply to: Bruce Momjian (#6)
hackersgeneral
Getting acces to MVCC version number

Hi all developpers,

This is just a idea.

How about making available the MVCC last version number just like oid is
available. This would simplify a lot of table design. You know, having
to add a field "updated::timestamp" to detect when a record was updated
while viewing it (a la pgaccess).

That way, if the version number do not match, one would know that the
reccord was updated since last retrieved.

What do think?

JLL

#8Bruce Momjian
bruce@momjian.us
In reply to: Bruce Momjian (#6)
general
Re: Monitoring a Query

Uh, no, not yet. There is a non-X version of tcl but I don't think
pgaccess will work under that.

---------------------------------------------------------------------------

wsheldah@lexmark.com wrote:

I just downloaded and installed pgmonitor on my dev. machine after seeing
your post, and it looks nifty. Only problem is I really want to avoid
running X on the database server to conserve the RAM it uses, and this
appears to require X. Any terminal applications to monitor database
activity, perhaps loosely analagous to mtop for MySQL?
(http://mtop.sf.net/)

Wes Sheldahl

Bruce Momjian <pgman@candle.pha.pa.us>@postgresql.org on 09/20/2002
12:18:06 PM

Sent by: pgsql-general-owner@postgresql.org

To: Aaron Held <aaron@MetroNY.com>
cc: pgsql-sql@postgresql.org, pgsql-general@postgresql.org
Subject: Re: [GENERAL] Monitoring a Query

There is pgmonitor:

http://gborg.postgresql.org/project/pgmonitor

---------------------------------------------------------------------------

Aaron Held wrote:

Is there any way to monitor a long running query?

I have stats turned on and I can see my queries, but is there any better
measure of the progress?

Thanks,
-Aaron Held

select current_query from pg_stat_activity;
current_query

<IDLE>
<IDLE>
<IDLE>
<IDLE>
<IDLE> in transaction
FETCH ALL FROM PgSQL_470AEE94
<IDLE> in transaction
select * from "Calls" WHERE "DurationOfCall" = 2.5 AND "DateOfCall" =
'7/01/02' AND ("GroupCode" = 'MIAMI' OR "GroupCode" = 'Salt Lake');
<IDLE>
<IDLE>
<IDLE>

---------------------------(end of broadcast)---------------------------
TIP 2: you can get off all lists at once with the unregister command
(send "unregister YourEmailAddressHere" to majordomo@postgresql.org)

--
Bruce Momjian                        |  http://candle.pha.pa.us
pgman@candle.pha.pa.us               |  (610) 359-1001
+  If your life is a hard drive,     |  13 Roberts Road
+  Christ can be your backup.        |  Newtown Square, Pennsylvania
19073

---------------------------(end of broadcast)---------------------------
TIP 6: Have you searched our list archives?

http://archives.postgresql.org

-- 
  Bruce Momjian                        |  http://candle.pha.pa.us
  pgman@candle.pha.pa.us               |  (610) 359-1001
  +  If your life is a hard drive,     |  13 Roberts Road
  +  Christ can be your backup.        |  Newtown Square, Pennsylvania 19073
#9Aaron Held
aaron@MetroNY.com
In reply to: Bruce Momjian (#8)
general
Re: Monitoring a Query

There are some good views and functions you can use to get at the SQL
query being executed

try turning on the stats collector and running
select * from pg_stat_activity;

(See http://www.postgresql.org/idocs/index.php?monitoring-stats.html )

You can also see the procID.
From Python I can use this info to get a lot of details about the
running query, CPU and memory use.

But I can't tell how far along it actually is.

-Aaron

wsheldah@lexmark.com wrote:

Show quoted text

I just downloaded and installed pgmonitor on my dev. machine after seeing
your post, and it looks nifty. Only problem is I really want to avoid
running X on the database server to conserve the RAM it uses, and this
appears to require X. Any terminal applications to monitor database
activity, perhaps loosely analagous to mtop for MySQL?
(http://mtop.sf.net/)

Wes Sheldahl

Bruce Momjian <pgman@candle.pha.pa.us>@postgresql.org on 09/20/2002
12:18:06 PM

Sent by: pgsql-general-owner@postgresql.org

To: Aaron Held <aaron@MetroNY.com>
cc: pgsql-sql@postgresql.org, pgsql-general@postgresql.org
Subject: Re: [GENERAL] Monitoring a Query

There is pgmonitor:

http://gborg.postgresql.org/project/pgmonitor

---------------------------------------------------------------------------

Aaron Held wrote:

Is there any way to monitor a long running query?

I have stats turned on and I can see my queries, but is there any better
measure of the progress?

Thanks,
-Aaron Held

select current_query from pg_stat_activity;
current_query

<IDLE>
<IDLE>
<IDLE>
<IDLE>
<IDLE> in transaction
FETCH ALL FROM PgSQL_470AEE94
<IDLE> in transaction
select * from "Calls" WHERE "DurationOfCall" = 2.5 AND "DateOfCall" =
'7/01/02' AND ("GroupCode" = 'MIAMI' OR "GroupCode" = 'Salt Lake');
<IDLE>
<IDLE>
<IDLE>

---------------------------(end of broadcast)---------------------------
TIP 2: you can get off all lists at once with the unregister command
(send "unregister YourEmailAddressHere" to majordomo@postgresql.org)

--
Bruce Momjian                        |  http://candle.pha.pa.us
pgman@candle.pha.pa.us               |  (610) 359-1001
+  If your life is a hard drive,     |  13 Roberts Road
+  Christ can be your backup.        |  Newtown Square, Pennsylvania
19073

---------------------------(end of broadcast)---------------------------
TIP 6: Have you searched our list archives?

http://archives.postgresql.org

#10Neil Conway
neilc@samurai.com
In reply to: Bruce Momjian (#6)
hackersgeneral
Re: Monitoring a Query

Bruce Momjian <pgman@candle.pha.pa.us> writes:

Aaron Held wrote:

Is there any way to monitor a long running query?

Oh, sorry, you want to know how far the query has progressed. Gee, I
don't think there is any easy way to do that.

Would it be a good idea to add the time that the current query began
execution at to pg_stat_activity?

Cheers,

Neil

--
Neil Conway <neilc@samurai.com> || PGP Key ID: DB3C29FC

#11Tom Lane
tgl@sss.pgh.pa.us
In reply to: Jean-Luc Lachance (#7)
hackersgeneral
Re: Getting acces to MVCC version number

Jean-Luc Lachance <jllachan@nsd.ca> writes:

How about making available the MVCC last version number just like oid is
available. This would simplify a lot of table design. You know, having
to add a field "updated::timestamp" to detect when a record was updated
while viewing it (a la pgaccess).
That way, if the version number do not match, one would know that the
reccord was updated since last retrieved.

What do think?

I think it's already there: see xmin and cmin. Depending on your needs,
testing xmin might be enough (you'd only need to pay attention to cmin
if you wanted to notice changes within your own transaction).

regards, tom lane

#12Bruce Momjian
bruce@momjian.us
In reply to: Neil Conway (#10)
hackersgeneral
Re: Monitoring a Query

Neil Conway wrote:

Bruce Momjian <pgman@candle.pha.pa.us> writes:

Aaron Held wrote:

Is there any way to monitor a long running query?

Oh, sorry, you want to know how far the query has progressed. Gee, I
don't think there is any easy way to do that.

Would it be a good idea to add the time that the current query began
execution at to pg_stat_activity?

What do people think about this? It seems like a good idea to me.

-- 
  Bruce Momjian                        |  http://candle.pha.pa.us
  pgman@candle.pha.pa.us               |  (610) 359-1001
  +  If your life is a hard drive,     |  13 Roberts Road
  +  Christ can be your backup.        |  Newtown Square, Pennsylvania 19073
#13Aaron Held
aaron@MetroNY.com
In reply to: Bruce Momjian (#12)
hackersgeneral
Re: Monitoring a Query

Bruce Momjian wrote:

Neil Conway wrote:

Bruce Momjian <pgman@candle.pha.pa.us> writes:

Aaron Held wrote:

Is there any way to monitor a long running query?

Oh, sorry, you want to know how far the query has progressed. Gee, I
don't think there is any easy way to do that.

Would it be a good idea to add the time that the current query began
execution at to pg_stat_activity?

What do people think about this? It seems like a good idea to me.

My application marks the start time of each query and I have found it
very useful. The users like to see how long each query took, and the
admin can take a quick look and see how many queries are running and how
long each has been active for. Good for debugging and billing.

-Aaron Held

#14Roberto Mello
rmello@cc.usu.edu
In reply to: Bruce Momjian (#12)
hackersgeneral
Re: [GENERAL] Monitoring a Query

On Sun, Sep 22, 2002 at 09:51:55PM -0400, Bruce Momjian wrote:

Would it be a good idea to add the time that the current query began
execution at to pg_stat_activity?

What do people think about this? It seems like a good idea to me.

OpenACS has a package called "Developer Support" that shows you (among
other things) how long a query took to be executed. Very good to finding
out slow-running queries that need to be optimized.

-Roberto

-- 
+----|        Roberto Mello   -    http://www.brasileiro.net/  |------+
+       USU Free Software & GNU/Linux Club - http://fslc.usu.edu/     +
#15Aaron Held
aaron@MetroNY.com
In reply to: Neil Conway (#10)
hackersgeneral
Re: [SQL] Monitoring a Query

It looks like that just timestamps things in its connection pool, that
is what I do now.

What I would like is to know about queries that have not finished yet.

-Aaron

Roberto Mello wrote:

Show quoted text

On Sun, Sep 22, 2002 at 09:51:55PM -0400, Bruce Momjian wrote:

Would it be a good idea to add the time that the current query began
execution at to pg_stat_activity?

What do people think about this? It seems like a good idea to me.

OpenACS has a package called "Developer Support" that shows you (among
other things) how long a query took to be executed. Very good to finding
out slow-running queries that need to be optimized.

-Roberto

#16Bruce Momjian
bruce@momjian.us
In reply to: Roberto Mello (#14)
hackersgeneral
Re: [SQL] Monitoring a Query

Roberto Mello wrote:

On Sun, Sep 22, 2002 at 09:51:55PM -0400, Bruce Momjian wrote:

Would it be a good idea to add the time that the current query began
execution at to pg_stat_activity?

What do people think about this? It seems like a good idea to me.

OpenACS has a package called "Developer Support" that shows you (among
other things) how long a query took to be executed. Very good to finding
out slow-running queries that need to be optimized.

7.3 will have GUC 'log_duration' which will show query duration.

-- 
  Bruce Momjian                        |  http://candle.pha.pa.us
  pgman@candle.pha.pa.us               |  (610) 359-1001
  +  If your life is a hard drive,     |  13 Roberts Road
  +  Christ can be your backup.        |  Newtown Square, Pennsylvania 19073
#17Bruce Momjian
bruce@momjian.us
In reply to: Aaron Held (#15)
hackersgeneral
Re: [SQL] Monitoring a Query

Aaron Held wrote:

It looks like that just timestamps things in its connection pool, that
is what I do now.

What I would like is to know about queries that have not finished yet.

OK, added to TODO:

* Add start time to pg_stat_activity

Should we supply the current duration too? That value would change on
each call. Seems redundant.

-- 
  Bruce Momjian                        |  http://candle.pha.pa.us
  pgman@candle.pha.pa.us               |  (610) 359-1001
  +  If your life is a hard drive,     |  13 Roberts Road
  +  Christ can be your backup.        |  Newtown Square, Pennsylvania 19073
#18Tom Lane
tgl@sss.pgh.pa.us
In reply to: Bruce Momjian (#17)
hackersgeneral
Re: [SQL] Monitoring a Query

Bruce Momjian <pgman@candle.pha.pa.us> writes:

OK, added to TODO:
* Add start time to pg_stat_activity

It would be nearly free to include the start time of the current
transaction, because we already save that for use by now(). Is
that good enough, or do we need start time of the current query?

regards, tom lane

#19Bruce Momjian
bruce@momjian.us
In reply to: Tom Lane (#18)
hackersgeneral
Re: [SQL] Monitoring a Query

Tom Lane wrote:

Bruce Momjian <pgman@candle.pha.pa.us> writes:

OK, added to TODO:
* Add start time to pg_stat_activity

It would be nearly free to include the start time of the current
transaction, because we already save that for use by now(). Is
that good enough, or do we need start time of the current query?

Current query, I am afraid. We could optimize it so single-query
transactions wouldn't need to call that again.

-- 
  Bruce Momjian                        |  http://candle.pha.pa.us
  pgman@candle.pha.pa.us               |  (610) 359-1001
  +  If your life is a hard drive,     |  13 Roberts Road
  +  Christ can be your backup.        |  Newtown Square, Pennsylvania 19073
#20Jean-Luc Lachance
jllachan@nsd.ca
In reply to: Bruce Momjian (#6)
hackersgeneral
Re: Getting acces to MVCC version number

That is great! Thanks for the info.

Tom Lane wrote:

Show quoted text

Jean-Luc Lachance <jllachan@nsd.ca> writes:

How about making available the MVCC last version number just like oid is
available. This would simplify a lot of table design. You know, having
to add a field "updated::timestamp" to detect when a record was updated
while viewing it (a la pgaccess).
That way, if the version number do not match, one would know that the
reccord was updated since last retrieved.

What do think?

I think it's already there: see xmin and cmin. Depending on your needs,
testing xmin might be enough (you'd only need to pay attention to cmin
if you wanted to notice changes within your own transaction).

regards, tom lane

#21Michael Paesold
mpaesold@gmx.at
In reply to: Jean-Luc Lachance (#20)
hackersgeneral
#22Manfred Koizar
mkoi-pg@aon.at
In reply to: Bruce Momjian (#19)
hackersgeneral
#23Tom Lane
tgl@sss.pgh.pa.us
In reply to: Manfred Koizar (#22)
hackersgeneral
#24Manfred Koizar
mkoi-pg@aon.at
In reply to: Tom Lane (#23)
hackersgeneral
#25Josh Berkus
josh@agliodbs.com
In reply to: Manfred Koizar (#24)
hackersgeneral
#26Bruce Momjian
bruce@momjian.us
In reply to: Josh Berkus (#25)
hackersgeneral
#27Josh Berkus
josh@agliodbs.com
In reply to: Bruce Momjian (#26)
hackersgeneral
#28Bruce Momjian
bruce@momjian.us
In reply to: Josh Berkus (#27)
hackersgeneral
#29Tom Lane
tgl@sss.pgh.pa.us
In reply to: Bruce Momjian (#26)
hackersgeneral
#30Roberto Mello
rmello@cc.usu.edu
In reply to: Bruce Momjian (#16)
hackersgeneral
#31Bruce Momjian
bruce@momjian.us
In reply to: Tom Lane (#29)
hackersgeneral
#32Bruce Momjian
bruce@momjian.us
In reply to: Roberto Mello (#30)
hackersgeneral
#33Tom Lane
tgl@sss.pgh.pa.us
In reply to: Bruce Momjian (#31)
hackersgeneral
#34Bruce Momjian
bruce@momjian.us
In reply to: Tom Lane (#33)
hackersgeneral
#35Martijn van Oosterhout
kleptog@svana.org
In reply to: Manfred Koizar (#24)
hackersgeneral
#36Josh Berkus
josh@agliodbs.com
In reply to: Bruce Momjian (#34)
hackersgeneral
#37Bruce Momjian
bruce@momjian.us
In reply to: Josh Berkus (#36)
hackersgeneral
#38Alvaro Herrera
alvherre@atentus.com
In reply to: Bruce Momjian (#32)
hackersgeneral
#39John Hasler
john@dhh.gt.org
In reply to: Bruce Momjian (#37)
hackersgeneral
#40Bruce Momjian
bruce@momjian.us
In reply to: John Hasler (#39)
hackersgeneral
#41Bruce Momjian
bruce@momjian.us
In reply to: Alvaro Herrera (#38)
hackersgeneral
#42Tom Lane
tgl@sss.pgh.pa.us
In reply to: Bruce Momjian (#34)
hackersgeneral
#43Bruce Momjian
bruce@momjian.us
In reply to: Tom Lane (#42)
hackersgeneral
#44Tom Lane
tgl@sss.pgh.pa.us
In reply to: Bruce Momjian (#40)
hackersgeneral
#45Bruce Momjian
bruce@momjian.us
In reply to: Tom Lane (#44)
hackersgeneral
#46Manfred Koizar
mkoi-pg@aon.at
In reply to: Martijn van Oosterhout (#35)
hackersgeneral
#47Manfred Koizar
mkoi-pg@aon.at
In reply to: Josh Berkus (#25)
hackersgeneral
#48Manfred Koizar
mkoi-pg@aon.at
In reply to: Tom Lane (#29)
hackersgeneral
#49Manfred Koizar
mkoi-pg@aon.at
In reply to: Tom Lane (#42)
hackersgeneral
#50Tom Lane
tgl@sss.pgh.pa.us
In reply to: Manfred Koizar (#47)
hackersgeneral
#51Roland Roberts
roland@astrofoto.org
In reply to: Martijn van Oosterhout (#35)
hackersgeneral
#52Josh Berkus
josh@agliodbs.com
In reply to: Tom Lane (#50)
hackersgeneral
#53Ross J. Reedstrom
reedstrm@rice.edu
In reply to: Manfred Koizar (#46)
hackersgeneral
#54Ross J. Reedstrom
reedstrm@rice.edu
In reply to: Roland Roberts (#51)
hackersgeneral
#55Ross J. Reedstrom
reedstrm@rice.edu
In reply to: Josh Berkus (#52)
hackersgeneral
#56John Hasler
john@dhh.gt.org
In reply to: Josh Berkus (#52)
hackersgeneral
#57Tom Lane
tgl@sss.pgh.pa.us
In reply to: Josh Berkus (#52)
hackersgeneral
#58Roland Roberts
roland@astrofoto.org
In reply to: Ross J. Reedstrom (#54)
hackersgeneral
#59Bruce Momjian
bruce@momjian.us
In reply to: Roland Roberts (#58)
hackersgeneral
#60Manfred Koizar
mkoi-pg@aon.at
In reply to: Bruce Momjian (#59)
hackersgeneral
#61Tom Lane
tgl@sss.pgh.pa.us
In reply to: Michael Paesold (#21)
hackersgeneral
#62Michael Paesold
mpaesold@gmx.at
In reply to: Jean-Luc Lachance (#20)
hackersgeneral
#63Roland Roberts
roland@astrofoto.org
In reply to: Bruce Momjian (#59)
hackersgeneral
#64Bruce Momjian
bruce@momjian.us
In reply to: Manfred Koizar (#60)
hackersgeneral
#65Martijn van Oosterhout
kleptog@svana.org
In reply to: Bruce Momjian (#64)
hackersgeneral
#66Bruce Momjian
bruce@momjian.us
In reply to: Martijn van Oosterhout (#65)
hackersgeneral
#67Martijn van Oosterhout
kleptog@svana.org
In reply to: Bruce Momjian (#66)
hackersgeneral
#68Tom Lane
tgl@sss.pgh.pa.us
In reply to: Martijn van Oosterhout (#67)
hackersgeneral
#69Josh Berkus
josh@agliodbs.com
In reply to: Tom Lane (#68)
hackersgeneral
#70Bruce Momjian
bruce@momjian.us
In reply to: Josh Berkus (#69)
hackersgeneral
#71Josh Berkus
josh@agliodbs.com
In reply to: Bruce Momjian (#70)
hackersgeneral
#72Bruce Momjian
bruce@momjian.us
In reply to: Josh Berkus (#71)
hackersgeneral
#73Mike Sosteric
mikes@athabascau.ca
In reply to: Bruce Momjian (#72)
hackersgeneral
#74Tom Lane
tgl@sss.pgh.pa.us
In reply to: Josh Berkus (#69)
hackersgeneral
#75Tom Lane
tgl@sss.pgh.pa.us
In reply to: Bruce Momjian (#70)
hackersgeneral
#76Bruno Wolff III
bruno@wolff.to
In reply to: Mike Sosteric (#73)
hackersgeneral
#77Mike Sosteric
mikes@athabascau.ca
In reply to: Bruno Wolff III (#76)
hackersgeneral
#78Achilleas Mantzios
achill@matrix.gatewaynet.com
In reply to: Bruno Wolff III (#76)
hackersgeneral
#79Bruno Wolff III
bruno@wolff.to
In reply to: Mike Sosteric (#77)
hackersgeneral
#80Tom Lane
tgl@sss.pgh.pa.us
In reply to: Mike Sosteric (#77)
hackersgeneral
#81Josh Berkus
josh@agliodbs.com
In reply to: Mike Sosteric (#73)
hackersgeneral
#82Dan Langille
dan@langille.org
In reply to: Josh Berkus (#81)
hackersgeneral
#83Bruce Momjian
bruce@momjian.us
In reply to: Dan Langille (#82)
hackersgeneral
#84Dan Langille
dan@langille.org
In reply to: Bruce Momjian (#83)
hackersgeneral
#85Bruce Momjian
bruce@momjian.us
In reply to: Tom Lane (#75)
hackersgeneral
#86Josh Berkus
josh@agliodbs.com
In reply to: Dan Langille (#82)
hackersgeneral
#87Mike Sosteric
mikes@athabascau.ca
In reply to: Josh Berkus (#81)
hackersgeneral
#88Josh Berkus
josh@agliodbs.com
In reply to: Mike Sosteric (#87)
hackersgeneral
#89Mike Sosteric
mikes@athabascau.ca
In reply to: Josh Berkus (#88)
hackersgeneral
#90Josh Berkus
josh@agliodbs.com
In reply to: Mike Sosteric (#89)
hackersgeneral
#91Tom Lane
tgl@sss.pgh.pa.us
In reply to: Bruce Momjian (#85)
hackersgeneral
#92Mike Sosteric
mikes@athabascau.ca
In reply to: Josh Berkus (#90)
hackersgeneral
#93Josh Berkus
josh@agliodbs.com
In reply to: Mike Sosteric (#92)
hackersgeneral
#94Mike Sosteric
mikes@athabascau.ca
In reply to: Josh Berkus (#93)
hackersgeneral
#95Jean-Luc Lachance
jllachan@nsd.ca
In reply to: Martijn van Oosterhout (#65)
hackersgeneral
#96Jean-Luc Lachance
jllachan@nsd.ca
In reply to: Martijn van Oosterhout (#65)
hackersgeneral
#97Bruce Momjian
bruce@momjian.us
In reply to: Tom Lane (#91)
hackersgeneral
#98Tom Lane
tgl@sss.pgh.pa.us
In reply to: Bruce Momjian (#97)
hackersgeneral
#99Achilleas Mantzios
achill@matrix.gatewaynet.com
In reply to: Tom Lane (#80)
hackersgeneral
#100Roland Roberts
roland@astrofoto.org
In reply to: Josh Berkus (#81)
hackersgeneral
#101Josh Berkus
josh@agliodbs.com
In reply to: Achilleas Mantzios (#99)
hackersgeneral
#102Bruce Momjian
bruce@momjian.us
In reply to: Tom Lane (#98)
hackersgeneral
#103Andrew Sullivan
andrew@libertyrms.info
In reply to: Bruce Momjian (#102)
hackersgeneral
#104Bruce Momjian
bruce@momjian.us
In reply to: Andrew Sullivan (#103)
hackersgeneral
#105Tom Lane
tgl@sss.pgh.pa.us
In reply to: Bruce Momjian (#104)
hackersgeneral
#106Andrew Sullivan
andrew@libertyrms.info
In reply to: Tom Lane (#105)
hackersgeneral
#107Bruce Momjian
bruce@momjian.us
In reply to: Tom Lane (#105)
hackersgeneral
#108Bruce Momjian
bruce@momjian.us
In reply to: Bruce Momjian (#107)
hackers
#109Oliver Elphick
olly@lfix.co.uk
In reply to: Bruce Momjian (#107)
hackersgeneral
#110Tom Lane
tgl@sss.pgh.pa.us
In reply to: Oliver Elphick (#109)
hackersgeneral
#111Zeugswetter Andreas SB SD
ZeugswetterA@spardat.at
In reply to: Tom Lane (#110)
hackers
#112Tom Lane
tgl@sss.pgh.pa.us
In reply to: Zeugswetter Andreas SB SD (#111)
hackers
#113scott.marlowe
scott.marlowe@ihs.com
In reply to: Mike Sosteric (#73)
hackersgeneral
#114Michael Paesold
mpaesold@gmx.at
In reply to: Bruce Momjian (#108)
hackers
#115Michael Paesold
mpaesold@gmx.at
In reply to: Zeugswetter Andreas SB SD (#111)
hackers
#116Bruce Momjian
bruce@momjian.us
In reply to: Michael Paesold (#115)
hackers
#117Michael Paesold
mpaesold@gmx.at
In reply to: Bruce Momjian (#116)
hackers
#118Bruce Momjian
bruce@momjian.us
In reply to: Michael Paesold (#114)
hackers
#119Bruce Momjian
bruce@momjian.us
In reply to: Michael Paesold (#117)
hackers
#120Manfred Koizar
mkoi-pg@aon.at
In reply to: Bruce Momjian (#119)
hackers
#121Tom Lane
tgl@sss.pgh.pa.us
In reply to: Manfred Koizar (#120)
hackers
#122Bruce Momjian
bruce@momjian.us
In reply to: Manfred Koizar (#120)
hackers
#123Yury Bokhoncovich
byg@center-f1.ru
In reply to: Bruce Momjian (#122)
hackers
#124Bruce Momjian
bruce@momjian.us
In reply to: Yury Bokhoncovich (#123)
hackers