vote up 29 vote down star
18

I'm currently developing a pretty big project, and I'm considering open source databases to use.

One of the main factors I consider is support, and it seems like there is not much support/community for PostgreSQL compared to MySQL even though MySQL seems like a much less fully featured product than PostgreSQL.

Should this fact shape my opinion in one direction or the other? Am I wrong with my conclusion of PostgreSQL? Are there real technical reason which makes it unsuitable for widespread use which I am not aware of?

flag

Look like your 4th Paragraph could be another post altogether. You’ll probably get better responses with a new one. – nick_alot Jan 1 '09 at 9:57
thank you. i will post in as a diffrent question. – Orentet Jan 1 '09 at 10:03
Another option that most overlook is Ingres – Dean Madden Jan 1 '09 at 20:44
MySQL is the cheap-crap simple to use (at first). – Andrei Rinea Mar 23 at 22:48
Simply to comment about this "One of the main factors I consider is support" In the firm I work, we pay support for Sun MySQL. So, we start by using MySQL with InnoDB version 5.1.20 and we have probem with autoinc "Can’t write; duplicate key in table" which is referenced as bugs.mysql.com/bug.php?id=27405. So we decide to update in 5.1.23. After we have problem with replication but they say it works in 5.1.30. Of course replication yes but autoinc bug come back bugs.mysql.com/bug.php?id=42714 so we were in 5.1.33 but we find another problem with replication... – Hugues Van Landeghem Sep 3 at 21:45

14 Answers

vote up 33 vote down check

As somebody who has used both, I would say the ease of use is entirely dependent on the eye of the beholder. I have no problem with either and both allow to do any administrative task quickly both from commandline and GUI. But they DO do these things differently, so it is the same as people claiming that Windows/Linux is more difficult to use, just because they have used one for a long time and are now trying to switch to the other.

Regarding support, I have never had need to move beyond Postgres online documentation, which is extremely well organized. I have heard people claim MySQL documentation superior, but my personal impression is just the opposite (for example, many of the function descriptions were lumped together in one big HTML page and not shown at table of contents, so you had to manually scroll through function list to find the syntax of the relevant one).

Regarding solidity, I have never had any issues with a Postgres database that runs now for years on a server that has occasionally had power outages. I have administered a server for a client who used MySQL, and 5 times out of 10 whenever server died (they were doing custom app development and tended to hog the server every now and then), you had to manually tweak MySQL to restore the database.

To answer the title question, all in all, Postgres is not as widespread as MySQL for reasonably the same reasons Linux is not so spread on desktop as Windows - Windows got there first, and the way you do things becomes convienient enough for you, so that a change is perceived as an annoyance. Additionally, MySQL has a commercial company behind it, which actively pushes things, which is not the case with Postgres.

link|flag
4  
I am almost sure that PostgreSQL is older than MySQL. Certainly, PostgreSQL has roots back to (University) Ingres. – Jonathan Leffler Jan 1 '09 at 17:55
3  
First available release of Postgres came out in 1986, MySQl v1 - 1995. And yes, Postgres dates back to Ingres. – Gnudiff Jan 2 '09 at 9:03
1  
I think this is a bad analogy. Linux actually is (by objective measures) much more difficult to use than windows. – Breton Jan 21 at 23:06
3  
Please provide more info about the "objective measures" you mention. – Milen A. Radev Feb 19 at 14:04
1  
@Breton ""visibility" which linux is particularly bad at compared to windows" - I think you need to reread this book because it should lead to the exact opposite opinion. In *nix check out man, for that matter man man. Moreover, tell me how windows makes their undocumented API and utilities more easy to use? – bias Aug 7 at 20:36
show 5 more comments
vote up 13 vote down

I have used both products in a business environment for many years. Mostly I've used MySQL for smaller, primarily read-only databases which require high speed, low overhead, and quick setup/administration. Typical standalone web sites would be an example. But I prefer PostgreSQL for core business or "mission critical" apps. Some of this is for historical reasons, since at the time I began, MySQL was pretty much a joke. It didn't do many things, and what it did do, it didn't always do well -- referential integrity, transactions, schemas, etc. In some cases it permitted invalid dates, and it handled certain other things in a non-standard way. And then there were the licensing issues and questions about how "open" and "free" MySQL and its various plug-in database engines would be in the future.

PostgreSQL, although being somewhat more difficult to set up and maintain, impressed me from the start as a very solid product. Certainly it has a few quirks of its own (e.g. "vacuuming"), but there was a certain quality and extensibility to it that somehow told me that the designers knew something about databases and how they were to function in a serious, demanding environment. Over the years, PostgreSQL has pushed the edge and offered functionality that was difficult to find even in commercial database products -- things like MVCC, OODBMS capabilities, and user-defined datatypes. Plus, I liked the licensing and the cohesiveness of its development effort and user community. Fewer users, perhaps, but knowledgeable, advanced users.

Today, both products (and their associated administration tools and drivers) have evolved and have greatly improved, and it would be much more difficult to recommend one over the other. I continue to use both, mostly drawing on experience and a "gut feel" to decide which is more appropriate for a given task. Each has its own tradeoffs, and you need to assess the situation depending on the features and levels of performance you need for getting the job done, and on how well it will tie in with your existing or future infrastructure. But I wouldn't give much attention to which product gathers the most media attention. Much like people first learning Windows and later exploring Linux, a similar situation seems to exist with MySQL and PostgreSQL. It's good to know both.

link|flag
vote up 11 vote down

PostgreSQL holds up well when you put the screws to it. Think, 18-table joins with combined inner/outer/subselect type queries. Big, nasty f!@kers that take hours to write, sort through many millions of records, and need to consistently get results in under 5 seconds.

MySQL falls completely flat on its face here, while PostgreSQL shines if you give it lots of RAM. PostgreSQL also slaughters MySQL for ACID compliance and data integrity. Try entering a date of "02/31/2007" for example. MySQL takes it, PostgreSQL covers your arse with an error.

MySQL replication is easy to setup, which is important because you'll continually have to set it up.... again. Postgres is much better about this, even though its replication support is more recent.

In short.... do you care about your data? If so, go with PostgreSQL. Otherwise, go with MySQL.

link|flag
vote up 10 vote down

Most people use MySQL, because most people use MySQL.

It sure has advantages to use whatever is the most popular (community support, driver support, books, etc)

link|flag
10  
Hey, that's why most people use PHP! :) – J Cooper Jan 1 '09 at 9:45
7  
Most people are not intelligent. – Andrei Rinea Mar 23 at 22:52
I was just at Powell's Technical Books in Portland the other day. They had approximately 10 feet of space on the shelves for MySQL books, about 15 feet of space for Oracle books, and two Postgres books. :-( – Joel Hoffman Mar 27 at 20:04
@Joel: Wow, Postgres must be a lot easier to use! – Wayne Koorts Jun 19 at 10:50
@Andrei and most of their comments aswell. – Elzo Valugi Oct 3 at 21:28
show 1 more comment
vote up 5 vote down

In the past MySQL had very little overhead for very small databases. So the common €0.99 hosting companies offered it. You know those hosting offers for thousands of websites which get less than one visitor per day

The intended customers just want something like a feedback form and did not care at all about "strange" concepts like sub-queries or transactions.

PostgreSQL on the other hand had far better transaction support (MySQL did lock the complete table!), did support sub-queries. PostgreSQL did hardly ever destroy a huge table, whereas MySQL had serious trouble which huge amounts of data. (OK, this is my subject impression).

But this did not matter. Those people did not need it. They did not have GBs of data.

Nowadays this all has changed. MySQL does support transactions in good way and Wikipedia proves that MySQL can deal which huge amounts of data. But still a lot of people have heard about MySQL because of its history. And as other poster already pointed out: Because it is used more often, there is more help and knowledge available.

It comes around in a handy bundle together with Apache and PHP. No need to think about a database server software. Just use the one provided.

link|flag
vote up 5 vote down

PostgreSQL was not designed for the masses. It is much more powerful, robust, and reliable than MySQL, but MySQL is much easier to use.

Recent changes in MySQL make it a poor choice for small shops/independent projects.

You should use PostgreSQL if you can, and SQL Server Express if you want ease of use.

The linked post has references as to why MySQL is no longer a good choice.

link|flag
vote up 2 vote down

I would recommend you to read this comparison.

In short MySQL is absolute leader in many of web sites when the transaction support is not required. But when it comes to transactions the picture is not that one sided and Postgres has a number of advantages and wide presence.

link|flag
vote up 2 vote down

Here is my list of contrasts between Mysql and Postgres from my experiences:

I can say that Mysql is barely faster than PostgreSQL. But most of the people who are fan of PostgreSQL claim that Postgres is more solid & stable than Mysql and they alsp claim that Postgres is better for critical and large datas.

Interestingly Postrgres doesn't have a bug tracking web site. I guess they get bug reports by their maillists.

Postgres choice of their elephant logo came from their target of being heavy-weight rock-solid DB. Mysql's dolphin is symbolizing being Fast.

Another contrast between Mysql and Postgres is Mysql using SQL:2003 standards compliant language which has some similarities with MsSQL'S T-SQL and Postgres has Oracle's Pl/Sql like language.

As mentioned above I found mysql's shell tools easier and more useful than the Postgres's tools.

But choice is yours you have to decide on the one according to your priorities.

link|flag
3  
an elephant never forgets – Arthur Thomas Jan 2 '09 at 19:35
vote up 1 vote down

PostgreSQL is somewhat more full-featured than MySQL, but it's also a lot harder to setup and administrate. Part of this is due to the fact that everyone's using MySQL, so there's tons of help available online. (at sites like this one!) However, most of the issue is due to PostgreSQL's design philosophy. There are several factors which contribute to this, none of them are objectively wrong, but they can inhibit pure ease of use. For example, a lot of PostgreSQL administration tasks must be performed as the postgres user. This is ok, but it's not really as slick as mysqladmin or just mysql and the good ole SQL shell.

I have heard (not verified myself) that MySQL is better for clustering and sharding, possibly due to superior vetting from companies like Google. However, that's just hearsay. Someone else may be able to confirm or deny this.

If it were me, I would pick MySQL. However, depending on the database features your application requires (such as proper optimistic locking), you may be better off with Postgres. Don't make your decision strictly on the basis of which one is "easier" to manage.

link|flag
i beg to differ on "a lot harder to setup and administrate". I use both routinely and there is hardly any difference, as long as you know what you are doing. – Gnudiff Jan 1 '09 at 11:10
MySQL is cheaper than free. No, it's not a good thing. – Andrei Rinea Mar 23 at 22:50
I'd disagree - the Windows installer is very nice, and pgAdminIII is brilliant - on MySQL/Windows, you need three or four programs to do everything this one application does, and does very well. You don't really need to worry about user access too much unless you're hosting your server somewhere, in which case you'd need to worry about it for MySQL as well. – Gaurav May 8 at 9:50
vote up 1 vote down

PostgreSQL support is excellent. It is the best mailing list i was ever subscribed to. It does not have so much volume because of its excellent documentation. You only need help when you are in trouble or you have not read the docs.

link|flag
vote up 1 vote down

Probably the prime reason for MySQL's relative dominance has been that it has run nicely on Windows for years, whereas PostgreSQL didn't do this natively until 2005. Given that most web developers would have been using Windows, and probably still are, MySQL makes for a more convenient test environment.

On top of that, MySQL has some niceties that many may prefer where ease of use is concerned. eg. REPLACE or INSERT ON DUPLICATE KEY UPDATE. Or, DESC tablename. These conveniences perhaps add resistance to migrating to PostgreSql.

link|flag
Indeed, multi-row upsert is what keeps my application locked to mysql :( – porneL Nov 27 at 15:18
vote up -1 vote down

I actually started out as somewhat of a postgres partisan, but, and I realize this is kind of lame, MySQL just has a better windows client. Query browser is pretty slick and PgAdmin is annoying to use. If you're doing quick and dirty database, it's just less of a pain to setup.

Another huge factor is support. You can get MySQL/PHP hosting just about anywhere, it's practically a given these days. I'm not sure how common that is with Posgres. Of course with more and more cloud computing apps, it will be easier to have a virtual server setup exactly how you like it. Maybe that will help with getting more people to use postgres.

And speaking of PHP/MySQL, there are tons of OSS apps that are MySQL only. So if you're going to run a server with some off the shelf software you're going to need to have MySQL installed anyway, and why run both?

This is all from a hobbyist/low end perspective, of course. If you were doing a higher-end business a lot of these factors wouldn't matter, with the exception that the way a lot of developers learn new technologies is by playing around with them in their spare time.

link|flag
vote up -1 vote down

Based on my recollections of doing app development in the 90's, the first free relational database that folks could get their hands on was by a guy in Australia named Dave Hughes. It was called "mSQL". It was fine, but it wasn't open source- and there were some commercial restrictions on it. You could write perl against it, and so folks doing lots of perl-based web development would use it as the backend. This was the age of mod_perl and cgi, so perl compatibility was pretty important if you were doing web stuff.

Eventually, mSQL atrophied, and there wasn't much support. A replacement database called MySQL was available, and it was binary-compatible with the mSQL interfaces. A number of perl shops switched over.

At this time, PostGres was a very early, very experimental Object / Relational DBMS. It was basically a bunch of grad student's thesis project, so it had lots of experimental stuff, but it wasn't really solid. It took until PostGresql95 and then it got pretty darn good- including support for a pretty decent flavor of ansi SQL, etc.

MySQL was there because- even though it didn't support transactions or foreign keys in those days- it was compatible with the existing de facto standard, worked well enough, and could be thrown into service doing all those guestbook apps- the only credible alternative was Oracle, at $50K / seat back then.

link|flag
vote up -4 vote down

The database managaemnt tools for MySQL are free and absolutely brilliant to use whereas for PostgreSql one will have to pay and the free ones that I have been using (pgAdmin) is very flaky to use. So, if I were you I would go for MySql.

link|flag
what kind of tools do you have in mind? I like both MySQL and Postgres ones - the free ones - well enough. – Gnudiff Jan 1 '09 at 11:00
And there are as much commercial offerings to mysql too. – rasjani Jun 2 at 5:55
1  
This answer got a lot of downvotes, but he has a valid point. There is simply no good GUI tool to debug Postgresql databases on Mac. I would actually probably use it more if it wasn't for that. – Brian Armstrong Jun 30 at 18:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.