Re: Need Some Recent Information on the Differences between Postgres and MySql

From: Jim Montgomery <monty1967(at)hotmail(dot)com>
To: <scott(dot)marlowe(at)gmail(dot)com>, <wultsch(at)gmail(dot)com>
Cc: <mary(dot)y(dot)wang(at)boeing(dot)com>, <pgsql-general(at)postgresql(dot)org>
Subject: Re: Need Some Recent Information on the Differences between Postgres and MySql
Date: 2010-06-25 05:03:01
Message-ID: SNT123-W820FA94A77741943FEC8BA7C70@phx.gbl
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general


Remove me from your email chain.

> Date: Thu, 24 Jun 2010 21:57:15 -0400
> Subject: Re: [GENERAL] Need Some Recent Information on the Differences between Postgres and MySql
> From: scott(dot)marlowe(at)gmail(dot)com
> To: wultsch(at)gmail(dot)com
> CC: mary(dot)y(dot)wang(at)boeing(dot)com; pgsql-general(at)postgresql(dot)org
>
> On Thu, Jun 24, 2010 at 9:46 PM, Rob Wultsch <wultsch(at)gmail(dot)com> wrote:
> > On Thu, Jun 24, 2010 at 6:13 PM, Scott Marlowe <scott(dot)marlowe(at)gmail(dot)com> wrote:
> >> For instant, by default, this will work in mysql:
> >>
> >> create table test (i int);
> >> insert into test (i) values ('');
> >>
> >> with a warning, but will produce an error in most modern versions of pgsql.
> >>
> >
> > However it is easy to get mostly sane behavior from MySQL:
> >
> > mysql> set sql_mode='strict_all_tables';
> > Query OK, 0 rows affected (0.00 sec)
> >
> > mysql> create table test (i int);
> > Query OK, 0 rows affected (0.05 sec)
> >
> > mysql> insert into test (i) values ('');
> > ERROR 1366 (HY000): Incorrect integer value: '' for column 'i' at row 1
>
> Now if there were just a way to turn it on and not let the user turn it off...
>
> > If it were me I would generally work with whichever system I knew
> > better unless there was a specific reason to migrate. Both systems
> > will be a bit of a pain as they are both complicated. C'est la vie.
> >
> > All else being equal I would start a new project with PG.
>
> Agreed. I find that PostgreSQL tends to teach you fewer bad habits and
> MySQL does.
>
> > Full disclosure: I am a MySQL DBA.
>
> I'm a pgsql DBA...
>
> --
> Sent via pgsql-general mailing list (pgsql-general(at)postgresql(dot)org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-general

_________________________________________________________________
http://clk.atdmt.com/UKM/go/195013117/direct/01/
We want to hear all your funny, exciting and crazy Hotmail stories. Tell us now

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Adrian von Bidder 2010-06-25 05:25:23 Re: Converting a Simple Database from MySQL to PostgreSQL in 40 hours?
Previous Message Craig Ringer 2010-06-25 04:48:45 Re: The case of PostgreSQL on NFS Server