RE: [SQL] benchmarks

2000-10-28 Thread Edmar Wiggers
As a former Oracle developer, I decided to start working with cheaper DBMS's. After a quick look on the market, PostgreSQL was the only one really worth looking into. But people liked MySQL, and I had to look for benchmarks. I found only one (attached). Not satisfied, I got PostgreSQL and MySQL

Re: [SQL] benchmarks

2000-10-28 Thread KuroiNeko
> Comparing PostgreSQL to MySQL is like comparing an 18-wheel Kenworth to > a Porsche. The two are not equivalent That's it. Major differences in features makes any benchmarking `apples to oranges.' > ... if you want a simple, very > very fast READ-ONLY database, use MySQL. BTW, can it be

Re: [SQL] except on nulls?

2000-10-28 Thread Tom Lane
Daniel Kalchev <[EMAIL PROTECTED]> writes: > [ EXCEPT behaves oddly in the presence of NULLs ] Yup, it does, because it's implemented like NOT IN, and NOT IN on a set containing nulls can never return 'true', only 'false' or 'unknown'. For example, 1 NOT IN (1,2,NULL) is clearly F

Re: [SQL] benchmarks

2000-10-28 Thread Josh Berkus
Frankyl, Clayton: Comparing PostgreSQL to MySQL is like comparing an 18-wheel Kenworth to a Porsche. The two are not equivalent ... if you want a simple, very very fast READ-ONLY database, use MySQL. If you want a full-featured transaction-environment database for a huge, complex set of

Re: [SQL] HELP! ... pg_locale ???

2000-10-28 Thread Tom Lane
Sandis Jerics <[EMAIL PROTECTED]> writes: > As result, now all queries, written inside the php code on multiply lines, > returns the following: > ERROR: parser: parse error at or near " " At a guess, you're having trouble with newline representations (Unix convention is \n only, DOS/Windows conv

Re: [SQL] renaming columns... danger?

2000-10-28 Thread Emils Klotins
Subject:[SQL] renaming columns... danger? > I just discovered that doing an alter table ... alter > column (to rename a column) does not do a complete > rename throughout the database. > shouldn't rename update any index and key definitions? > I'm very frightened right now, beca