Re: [GENERAL] Multi-threading on PostgreSQL?

1999-07-15 Thread Chris Bitmead
I think you are missing something. Threads and processes, to a great extent are 6 of one and half a dozen of the other. Postgres uses multiple processes accessing a shared memory area. A multithreaded database would use multiple threads accessing a shared memory area. In most OSes, threads and

Re: [GENERAL] Multi-threading on PostgreSQL?

1999-07-15 Thread Bruce Momjian
[Charset iso-8859-1 unsupported, filtering to ASCII...] Hi, I am really impressed with the features of PostgreSQL but am wondering if we should use this product for our project. We have tried several databases (MySQL, Sybase ASE, Sybase ASA) and we are now looking at PostgreSQL before

[GENERAL] How to install just client only

1999-07-15 Thread Huynh, Long
Title: How to install just client only Hello all, How do I just install client only on remote machines, which includes Linux, Windows 9x and NT? So that users can connect to Postgresql server and run querries. Thanks.

RE: [GENERAL] Multi-threading on PostgreSQL?

1999-07-15 Thread Tiago Hermans
My concern comes from the fact that there's no multi-threading support in PostgreSQL and since we expect many customers to be connected at the same time on multiple connections, I am afraid the time to perform the SQL statements will be much longer, since they'll all be queued one

[GENERAL] Foreign Keys in PostgreSQL

1999-07-15 Thread Simeó
How can I implement foreign Keys with postgres? thanks. Simeó Reig [EMAIL PROTECTED] Barcelona (SPAIN) -

Re: [GENERAL] Foreign Keys in PostgreSQL

1999-07-15 Thread Howie
On Thu, 15 Jul 1999, [iso-8859-1] Simeó wrote: How can I implement foreign Keys with postgres? thanks. pgsql/contrib/spi has refint.c. you'd want to compile that and execute refint.sql. it also comes with documentation. refit is, for now, the way postgres handles foreign keys. two