vote up 6 vote down star
1

Hiya,

I've been asked to support and take on a PostgreSQL app, but am a MySQL guy - is this a realistic task?

flag

9 Answers

vote up 1 vote down

I faced the same situation about a month ago.... I have been doing fine with postgres. There is a strong online community for postgres and you should be able to find help if you run into any trouble and learn stuff easily :)

link|flag
vote up 3 vote down

How different is PostgreSQL to MySQL?

That depends if you're talking about SQL only (which is mostly the same) or the stored procedures (which are quite different).

is this a realistic task?

Absolutely. PostgreSQL has very good documentation and community. There are also lot of ppl, who have experience with MySQL and PostgreSQL.

"MySQL vs PostgreSQL wiki" — centers on "which is better", but gives you some idea of differences.

link|flag
vote up 5 vote down

PostgreSQL has some nice features like generate_series, custom aggregate functions, arrays etc, which can ease your life greatly if you take some time to learn them.

On the other hand it lacks some features of MySQL like using and assigning session variables in queries, FORCE INDEX, etc., which is quite annoying if you are used to these features.

If you just use basic SQL, then you will hardly notice any difference.

link|flag
vote up 1 vote down

You may want to take a look at these pages: Why PostgreSQL Instead of MySQL: Comparing Reliability and Speed in 2007, Why PostgreSQL Instead of MySQL 2009.

link|flag
vote up 1 vote down

I didn't take very long to switch from MySQL to PostgreSQL back when I first started using PostgreSQL in anger at a previous company. I found it very nice and very refreshing (not that MySQL was bad) compared to MySQL which I had used previously. PostgreSQL was also a good stepping stone to Oracle which I use at my current company. I liked that it had a proper command line application like MySQL, but the configuration options are harder - but if you're not setting it up then there is no problem.

link|flag
vote up -4 vote down

Postgresql is an object-relational database system and mySql is a relational database. Another fundamental difference is in the data types. Here's a comparison: http://www.wikivs.com/wiki/MySQL_vs_PostgreSQL#DataTypes

link|flag
PostgreSQL is most certainly not object-relational. – Don Werve Apr 8 at 0:04
Yeah, my response was kind of just copied from Wikipedia which had it listed as object-relational. I guess I'm just a postgres noob. – Daffy Apr 8 at 3:38
vote up 1 vote down

PostgreSQL compared to MySQL is as any other pair of DBMSs compared. What they have in common is non-functional, specifically the consequences of each being open source. In terms of features, use, and strengths they are no closer to each other than PostgreSQL is to Oracle or DB2 is to Sybase.

Now on to your real question: you are a SQL guy, albeit one who has not yet had experience with PostgreSQL. This is a completely realistic task for you, and a good one since you'll expand your understanding of the varieties of DBMSs and gain a perspective on MySQL that you can't get from working solely within its sphere.

As someone who was once in exactly the same position, my guess is that you'll quickly pick up PostgreSQL and might even hesitate to return to MySQL ;-).

link|flag
vote up 0 vote down

If you're interested in the different flavors of SQL, here are a few resources (though some may be outdated):

link|flag
vote up 0 vote down

We are trying to switch our application from mySQL to postgres. I wished we would have some kind of a subroutine (in VB6) were I can input the mySQl SQL query and get a string out containing the appropriate postgres query.

Does anybody have a solution or is interested working with us on that?

Thank you!

Thomas

link|flag
StackOverflow is a Q&A site, not a forum. This means that if you have a question, ask it separately; don't post it as an answer to another question. Even on forums, threadjacking is considered bad netiquette. Do a little lurking and read the FAQ to familiarize yourself with SO. – outis Oct 24 at 12:30

Your Answer

Get an OpenID
or

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