[GENERAL] list configuration

2000-10-30 Thread Martin A. Marques
My question is if the list configuration for the general and the developers list is going to stay this way or change? I have a filter that looks for the Sender header and that line has changes since 2 days ago from Sender: [EMAIL PROTECTED] to Sender: [EMAIL PROTECTED] is it goning to stay t

[GENERAL] unsubscribe

2000-10-30 Thread ADDATA
unsubscribe ADDATA Jon R. Will PO Box 231263 Encinitas, CA 92023 888-825-9990 760-634-8074 http://www.addata.org http://www.willpowerdesign.com

[GENERAL] postgres on redhat 7.0

2000-10-30 Thread os390 ibmos
I am upgrading from RH 6.0 to RH 7.0. Dos anybody know where I can find the rpms for Postgres to work on RH7.0. Thanks, === arijit _ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. Share informatio

Re: [GENERAL] --enable-syslog in rh7 ?

2000-10-30 Thread Trond Eivind Glomsrød
"Sergio A. Kessler" <[EMAIL PROTECTED]> writes: > hi teg, > > the build of postgressql 7.0.2 in rh7 was with --enable-syslog ? No, but this is part of a configuration patch: * USE_SYSLOG: use syslog for elog and error messages printed by tprintf @@ -169,7 +169,7 @@ * (syslog=0 for stdio, s

[GENERAL] --enable-syslog in rh7 ?

2000-10-30 Thread Sergio A. Kessler
hi teg, the build of postgressql 7.0.2 in rh7 was with --enable-syslog ?

[GENERAL] Help in chosing Db: hierarchical data in tables

2000-10-30 Thread Sergei O . Naumov
Hi! I am now in the process of choosing a Db for our next project. A central point is that objects have a distinct tree-like structure (parent-child chains). My question is whether there is anything I can do in Postgres that could provide a functionality similar to Oracle's CONNECT BY/START WIT

Re: [GENERAL] A question about PL/pgSQL

2000-10-30 Thread K Parker
Doesn't the following allow a race condition? >declare foo record; >begin > select into foo * from overview... > if not found > insert... > else ... > end if; >end; ISTM 2 or more clients could attempt to insert the same row, based on the select failing, if all were issued at the same time.