Re: moving from MySQL to pgsql

From: Jasen Betts <jasen(at)xnet(dot)co(dot)nz>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: moving from MySQL to pgsql
Date: 2012-10-13 07:45:26
Message-ID: k5b66m$7pi$1@reversiblemaps.ath.cx
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 2012-10-10, Vineet Deodhar <vineet(dot)deodhar(at)gmail(dot)com> wrote:
> --f46d040714c5d7a08c04cbb08256
> Content-Type: text/plain; charset=UTF-8
>
> Hi !
> At present, I am using MySQL as backend for my work.
> Because of the licensing implications, I am considering to shift from MySQL
> to pgsql.
> Typically, my apps are multi-user, web based or LAN based.
>
> 1) Read over the internet that ---
> Postgres is not threaded, but every connection gets it's own process. The
> OS will distribute the processes across the processors. Basically a single
> connection will not be any faster with SMP, but multiple connections will
> be.
>
> MySQL is multi-threaded server so it can use many processors. A separate
> thread is created for each connection.
> source:
> http://dcdbappl1.cern.ch:8080/dcdb/archive/ttraczyk/db_compare/db_compare.html#Comparison+of+Oracle%2C+MySQL+and+Postgres+DBMS
>
> In what way it might affect my app performance?

It's going to hurt a bit if creating processes is expensive and you
need many.

> 2) I run MySQL from a USB stick.
> There is no installation required (on WinXP.). (not tried on Ubuntu)
> Is it the same for pgsql?

It's probably possible, but usb flash gets you all the disadvantages
of SSD with no benefits (except portability), you'd probably have to
reformat the usb to NTFS - windows FAT doesn't support postgres.
And you'd also need to do a custom install.

> 3) Can I simulate MySQL's TINYINT data-type (using maybe the custom data
> type or something else)

Probably what properties of tinyint do you need?

--
⚂⚃ 100% natural

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Jasen Betts 2012-10-13 08:22:08 Re: moving from MySQL to pgsql
Previous Message John R Pierce 2012-10-13 06:40:07 Re: Help estimating database and WAL size