MySQL versus SQL Server Express

前端 未结 6 650
逝去的感伤
逝去的感伤 2021-02-08 14:26

Did the recent purchase of MySQL by Sun and the subsequent buggy releases kill the MySQL brand?

I whole heartedly embraced MySQL when it first came out as I used to be a

6条回答
  •  清酒与你
    2021-02-08 14:47

    So far no-one knows what Oracle is going to do to MySQL, not even Oracle.

    I've done extensive testing of MySQL and would say that in terms of performance it is about at SQL Server 7.0 level. That is fine if all you need is the performance of SQL Server 7.0

    At the enterprise level is simply doesn't compete. If you look at the fanfare surrounding MySQL 5.4 it says "now supports more than 4 processors".

    Where MySQL scores highly is that it is so cheap that it makes a scale-out design feasible, in which case the raw power of an individual box simply doesn't matter.

    There are quite a few ommissions in MySQL that will trap a SQL Server developer. No CHECK constraints, no index views, no separation of clustered indexes from primary keys. That said, it has a large number of useful features that are very useful to web developers.

    The Sun/MySQL guys are remarkably honest about their product. They say exactly what the strengths and weaknesses are. If you are used to some of the big vendors sales tactics this comes as a massive shock. Ultimately this does inspire confidence in using the product because you know exactly what to expect. I would much sooner deal with a product that says "don't do this because this is beyond our limits" than one that says "our product is the cure for cancer" and it turns out it couldn't cure a simple hangover!

提交回复
热议问题