[GENERAL] Another episode of the regular MySql-PostgreSQL war on Slashdot

2001-10-12 Thread Alessio Bragadini
As usual, a rather harmless article on Slashdot about MySql ("Major Changes To MySQL Coming Soon") turned into a flaming discussion about the different virtues of MySql and PostgreSQL. What strikes me is that this time the chief developer of MySql, Michael 'Monty' Widenius, had time available to

Re: [GENERAL] Ridicolus Postgresql review

2001-09-18 Thread Alessio Bragadini
Andrea Aime wrote: > If you want to get angry, take a look at: > http://www.iemagazine.com/010918/414feat3_1.shtml Seems that the article has been removed. I've sent a note to the editor, and he replied by asking if I wanted it published in the print edition, which I think will happen. -- Ales

[GENERAL] Re: personel appliactions?

2001-04-11 Thread Alessio Bragadini
Stan Brown wrote: > So, I was wandering if anyone knows wehre I could find a few small > applicationsUsing PostgreSQL as abckaends? I'm looking for. > > 1. CD/Music lirary management. gmmusic -- Alessio F. Bragadini[E

[GENERAL] News gateway down?

2001-04-03 Thread Alessio Bragadini
Hi, usually I track postgresql.org's lists using the Usenet news gateway at news.postgresql.org. Unfortunately, I haven't been able to connect to the server since Saturday. Is there any problem? Thanks. -- Alessio F. Bragadini[EMAIL PROTECTED] APL Financial Services http://

[GENERAL] PostgreSQL packages for Debian potato

2001-02-23 Thread Alessio Bragadini
We have a number of client machines running Debian Linux, "potato" release (i.e. 2.2, latest stable). The provided PostgreSQL is release 6.5.3, but I managed to track changes in unstable ("woody") until 7.0.2, as long as packages were built using an older glibc. Now, unstable packages (of 7.0.3) a

Re: [GENERAL] 7.1beta4 initdb problem

2001-02-06 Thread Alessio Bragadini
Tim Barnard: > The program '/usr/local/pgsql/bin/postgres' needed by initdb does not belong to PostgreSQL version 7.1beta4. Check your installation. > Any ideas? Yes, happened to me, too. You need not to be root, but an unprivileged user (i.e. postgres). That's the strangest error message in

Re: [GENERAL] can't run on TCP/IP ports

2001-02-05 Thread Alessio Bragadini
Tom Lane wrote: > > I figured out the problem, postmaster when run as postgres didn't have > > write permissions to /var/run/postgresql directory (where the Debian > > version puts its socket files) and therefore didn't have permission to > > open the socket. . > > ROTFL ... score one for the De

Re: [GENERAL] Problems installing version 7.1beta4

2001-02-05 Thread Alessio Bragadini
Einar Karttunen wrote: > The program '/usr/local/pgsql/bin/postgres' needed by initdb does not > belong to > PostgreSQL version 7.1beta4. Check your installation. See previous thread. You must not run it as root. -- Alessio F. Bragadini[EMAIL PROTECTED] APL Financial Services

[GENERAL] red hat/mysql fiasco

2000-12-21 Thread Alessio Bragadini
We should be nice and professional on holiday season but sorry, I couldn't help myself: at we can read "The MySQL packages shipped with Red Hat Linux 7 contained buggy assembler code. When compiled with optimization enabled, this code cause

Re: [GENERAL] Sequence value

2000-12-15 Thread Alessio Bragadini
Esa Pikkarainen wrote: > but unfortunately it did not solve my problem. Now I have no access > to the value of nextval('koe_pkey_id'). This query does not return > any recordset. Sorry, I didn't check this requirement. > Is it possible to embed Insert query as a subquery into a Select > query?

Re: [GENERAL] Sequence value

2000-12-15 Thread Alessio Bragadini
Esa Pikkarainen wrote: > SQL ="SELECT nextval('koe_pkey_id') as val; > INSERT INTO koe (id, name) values (val, 'uusi');" INSERT INTO koe (id, name) (SELECT nextval('koe_pkey_id'), 'uusi'); -- Alessio F. Bragadini[EMAIL PROTECTED] APL Financial Services http://village

Re: [GENERAL] Problems with starting Postgres

2000-12-11 Thread Alessio Bragadini
Tom Lane wrote: > A plain kill (SIGTERM) should remove the socket file on its way out. > The only thing that wouldn't is kill -9 ... if you're doing it that > way, don't. The problem is an unexpected crash/reboot of the machine (which shouldn't happen, but...) that leaves socket files in /tmp an

Re: [GENERAL] Re: Large Objects

2000-09-21 Thread Alessio Bragadini
Neil Conway wrote: > > a BLOB. Conversely, Unix filesystems store directories as unsorted > > lists, which are a lot slower to search than the database's > > structured indexes. > Wow, can anyone confirm this (with Postgres preferrably)? In talking > with some developers at my old job, they all

Re: [GENERAL] Re: Slash on PostgreSQL mailing list

2000-08-02 Thread Alessio Bragadini
Christopher Smith wrote: > The better url i found is http://www.link.it/mailman/listinfo/slash-pgsql :) Sorry, ofcourse it's true, blame my tired mind. Thanks Alessio -- Alessio F. Bragadini[EMAIL PROTECTED] APL Financial Services http://www.sevenseas.org/~alessio Nicosia

[GENERAL] RDBMSs comparison (on Linux)

2000-04-14 Thread Alessio Bragadini
LinuxCare runs a comparison chart and poll about different databases available for Linux -- Alessio F. Bragadini[EMAIL PROTECTED] APL Financial Services http://www.sevensea

Re: [GENERAL] How do you live without OUTER joins?

2000-01-13 Thread Alessio Bragadini
Sarah Officer wrote: > How about using a union? > > select cc.com_cat_long, co.company_name > from company_category cc, company co > where cc.com_cat_abbr = co.com_cat_abbr > union > select 'unknown' as com_cat_long, company_name > from company > where com_cat_abbr is null; Yes, would be the be