Slashdot Mirror


MySQL 3.23 Declared Stable

redcoat writes "After two long years, MySQL 3.23 has been declared stable. Improvements over 3.22 and .21 include rudimentary transaction support using the BerkeleyDB lib, full-on replication (master/slave configuration) and lots of other goodies. It's been a long wait, but a worthwhile one, no doubt."

115 comments

  1. Re:It's about time... by Betcour · · Score: 2

    Well those are neat, but they are minor features to most people. Replication and load-balance between slaves is neat, but what's the point to load balance between slaves when MySQL doesn't even cache queries. With web sites running always the same queries again and again, caching queries would gives incredible speed boost and isn't a very hard feature to implement (quite easier than foreign key or transaction IMHO).

    Sure things improves in MySQL, but huge missing features are ignored in favor of minor improvements here and there. I'm sorry but full-featured transaction, foreign keys, caching, constraints, nested queries, etc. are what people expect their database to do, and they are very MISSION CRITITAL in many situations. Reworking the table file format yet again is not what I'd call a massive improvement.

  2. Re:Declared Stable? by -brazil- · · Score: 4
    Wusthof-Trident 7" Kitchen Knife declared versatile

    Well, compared to what? It doesn't even have a can-opener!

    Do yourself a favor and get yourselves a Victorinox Swiss Army Knife with builtin digital altimeter and thermometer, so you can play with a real knife!

    --

    The illegal we do immediately. The unconstitutional takes a little longer.
    --Henry Kissinger

  3. Re:It's about time... by Schoos · · Score: 1

    What do you want? A stable database? Or lots of
    new features with bugs in them?

    It's a whole company, but do you know how much people they are? Don't always think of giants like Mircosoft or Intel when thinking of companies, MySQL is developed by just a few people (I counted 12 or 13 coders), and they are keeping the whole stuff platform independent, the server and the tools run an Windows, and many flavours of unixes.

    Ever built a transaction feature yourself? Or a rudimentary database? I don't think half an year is to long for the things they implemented in 3.23.

    Michael

    --
    Michael Bergbauer (michael.bergbauer@gmx.net)
  4. Re:MySQL is not alone in the OpenSource World. by Chagrin · · Score: 1
    I don't get it. I've used MySQL with many, many different versions over the past two years. I'm no DBA, and I never spend time tweaking its performance -- basically I always just set it and forget it.

    ...and in all that time, I've never had a crash or corrupted table. What gives? Am I that lucky?

    --

    I/O Error G-17: Aborting Installation

  5. Re:Declared Stable? by Tony-A · · Score: 1

    Seems like a Relational database system would have relations and a Transactional database system would have transactions.
    With Transactions the code is to write first then check. If there are problems, you can always rollback.
    With MySQL (other than with transactions on BDB), the update is atomic. It either succeeds or fails. It's a different paradigm and in many cases a better paradigm. You do need to do better analysis and coding, though.

  6. Re:postgres / mysql by __aanonl8035 · · Score: 3

    I found an interesting article
    by a fellow who has worked on some
    major open source oriented sites.
    He does a quick comparison of
    postgres and mysql here.

  7. Re:MySQL is not alone in the OpenSource World. by Alex · · Score: 1

    You obviously don't understand MySQL versioning, what it means is that the latest release MySQL 3.23 "is the latest stable release"

    Alex

  8. Does this include the windows version too? by Ramshackle · · Score: 1

    In 3.22.34, it would crash just from a run o' the mill ORDER BY. Hope at least that much is fixed...

  9. Re:NULL in indexed columns by brucet · · Score: 1

    It allows NULL in indexed columns!

    Are you saying this is a good thing or a bad thing? Certainly at least for non-unique indexes you want to be able to have an index on the rows that do have data. Queries which use the index should should still be speedy.

    For unique indexes it's another matter. Oracle allows unique indexes on nullable columns which is pretty bogus since it doesn't ensure uniqueness.

    -Bruce

  10. Re:MySQL is not alone in the OpenSource World. by orabidoo · · Score: 2
    MySQL have for many years been been considered as a very unstable product and that it have been (still are probably) lacking a lot of really useful features.
    No, MySQL has been rock stable at the very least for the last 2 years. I've been using it for website development since mid 98 or thereabouts, and it's never crashed or lost any data. MySQL is definitely nowhere near the high end of databases when it comes to features, but what it does, it does it really well.
  11. Re:Congratulations to the team by Howie · · Score: 1

    But the Microsoft solution does get you transaction support in ASP, never mind the database, a replication architecture that has been around a couple of versions (I've never actually used it, but I know that at least SQL6.5 had it), and an army of button-pushers who know how to use it.

    Maybe you don't need all the database and transactional features for your application, but you aren't comparing like for like here.

    --
    "don't fall into the fallacy of believing that Perl can solve social problems. Maybe Perl 6 can, but that's a ways off"
  12. Re:Shameless Plug: Easy MySQL Installation Product by nkg · · Score: 2

    So Do Nusphere.
    I ran tests for a client using both Nusphere & AbriaSQL distributions of php, mysql,apache & perl (nupshere only) on Red hat & win 2k. The Nupshere was easyer to install on both platforms.
    Also unless you pay for support, AbriaSQL use elder versions of all the programs. whixh is bad.

  13. Re:MySQL, bah! by dhogaza · · Score: 1

    Yes, Postgres 7.1 supports LEFT, RIGHT, and FULL outer joins. It's still in beta but it's been running Sourceforge for a month ...

  14. Re:MySQL is not alone in the OpenSource World. by theMAGE · · Score: 1

    Well, check out sapdb at www.sapdb.org.

    It will be GPLed soon.

  15. Re:Whither Foreign Key Support? by NineNine · · Score: 1

    Wow. No foreign keys. No transactions. No stored procedures. An Excel Spreadsheet has the EXACT same functionality as MySQL.

  16. Re:It's about time... by e4 · · Score: 1
    With web sites running always the same queries again and again, caching queries would gives incredible speed boost...

    That might be an issue if performance were a problem. Most web sites built on MySQL get results plenty fast without having to cache things.

    I'm sorry but full-featured transaction, foreign keys, caching, constraints, nested queries, etc. are what people expect their database to do, and they are very MISSION CRITITAL in many situations.

    I don't think anybody is suggesting using MySQL to run your Fortune 500 company database. MySQL's niche is web sites. The web is inherently session-based. If you've got somebody entering data in a form, and they bail halfway through, you have no way to tell. How many web sites allow you to "unsubmit" a transaction? So transaction rollback isn't a big deal for a lot of applications. Likewise with foreign keys. If you're coding your site in such a way that foreign key violations are what tip you off to a data integrity problem, you need to do some more work.

    MySQL is not Oracle. It's not PostgreSQL either. In many ways, that's a good thing. That's the great thing about competition: You can pick the tool that does what you need.

  17. Re:Ten reasons to migrate from Postgres to MySQL by dhogaza · · Score: 1

    Let's see ...

    1 & 2: PG 7.1 (now in beta3) allows infinite length tuples, so you might want to reconsider that restriction, given that you're still in development and that PG 7.1 will be released in a very short time.

    3: "order by" has to sort the output rows regardless, so sorting the indices alone doesn't help as much as you might think. This is particularly true if you're doing a "join" first. And merge joins result in an ordered set of output tuples which in some cases, at least, will match the "order by" sort requirements, meaning it can be left out altogether

    4: PG 7.1 does ...

    5: True

    6: Not quite sure what you want, here, but PG does support a fast "COPY" command to import data quickly.

    7: True

    8: PG 7.1 does ...

    9: True

    10: Sourceforge recently migrated from MySQL to PG 7.1 :)

  18. Nobody holds a candle to Oracle yet. by bwt · · Score: 5

    I'm of the opinion that the open source databases are all so substantially behind the capabilities of the proprietary market leader Oracle that I don't consider them viable replacements for enterprise grade data solutions. I work on a system that has 800 concurrent users at any given moment, and I don't see anything remotely close to worthy of consideration in the open source arena.

    Worse, I see Oracle as pulling away. In the last two years, the open source databases have struggled to add features that I view as expected and required while Oracle has added 10X more. Transactions & row-level locking, nested selects, foreign keys, etc... are not optional features. In order to compete, open source needs database projects with forces comparable to the linux kernel, apache, gnome, and KDE projects. I just don't think Larry Ellison is out there worrying about GPL'd competition.

    I don't think Oracle gets the proper attention in the open source community. Oracle has a greater "lock in" effect and has mostly got a free ride from the open source community so far. Oracle is a big gorilla that is rapidly becoming the most secure proprietary software vendor around.

    1. Re:Nobody holds a candle to Oracle yet. by Karora · · Score: 1

      I use Oracle in my day job. It definitely has some good features, and a good few mis-features as well.

      While you are probably correct that there aren't any open source alternatives at the high end, at the mid-range PostgreSQL is definitely an alternative, with (better than) row level locking, transactions, foreign keys and nested selects all there in current production versions.

      --

      ...heellpppp! I've been captured by little green penguins!
    2. Re:Nobody holds a candle to Oracle yet. by gol64738 · · Score: 1

      whoa, whoa cowboy!
      mysql is not out the crush the oracle competition! mysql and oracle are too different applications designed for different solutions. wanna make the next ebay? use oracle. wanna make a lightning fast accounting app for a small to medium sized business? use mysql.
      please don't compare the two in this regard.

      golgotha

    3. Re:Nobody holds a candle to Oracle yet. by cabes · · Score: 1

      I tend to agree that Oracle is the best, but small companies cannot afford its ridiculous prices for a small web site or even large one. As you will see here, a small department in NASA even had to switch from Oracle to MySQL due to budgetary constraints.....

    4. Re:Nobody holds a candle to Oracle yet. by flayum · · Score: 1

      Being better is not always what matters. Often, price is what matters. Software design in the real world requires trade offs. If you are on a constrained budget, it doesn't matter if oracle is light years ahead of gpl alternatives. The gpl databases meet your budget The great thing about databases is that there is at least some standardization with SQL. So you can upgrade to a more robust, expensive database over time.

    5. Re:Nobody holds a candle to Oracle yet. by Fast+Ben · · Score: 1

      800 concurrent users at any given moment
      Wow, those user licenses must cost you a fortune?

      Oracle has added 10X more
      Well, they _do_ have the $$ to pay for developers...

      I just don't think Larry Ellison is out there worrying about GPL'd competition
      If not, he's making a big mistake (IMHO).
      Oracle's database sales have been dropping steadily for a while now, and I for one sold the few Oracle shares I did have a few months ago.

      Oracle has a greater "lock in" effect
      True. All those _very_ highly paid Oracle dba's out there aren't about to flush their jobs down the toilet,
      and management usually does what the IT dept. tells them (read 'buy Oracle') because they don't know any better.

    6. Re:Nobody holds a candle to Oracle yet. by dhogaza · · Score: 1

      Postgres has had transactions for decades.

      Postgres has had row-level locking for two years.

      Postgres has had some form of nested selects for some time (can't remember which release).

      Postgres has had referential integrity checking since PG 7.0 (a year? I forget)

      You're correct about Oracle being the "big gorilla" in the house, though.

    7. Re:Nobody holds a candle to Oracle yet. by Entropy_ah · · Score: 1

      800 concurrent users at any given moment
      Wow, those user licenses must cost you a fortune?


      You don't have to buy a licence for each user. Its 800 people that access it at one time. One licence. Your an idiot.

      --
      my other penis is a vagina
  19. Re:Raves. by TheFlu · · Score: 2
    This is why the replicate user only gets issued the FILE privilege, like the tutorial mentions:

    GRANT FILE ON *.* TO replicate@ip_address IDENTIFIED BY 'password';

    Although, you are correct, as this is a potential problem to be aware of, as listed in the MySQL documentation:

    "Don't give the file privilege to all users. Any user that has this privilege can write a file anywhere in the file system with the privileges of the mysqld daemon! To make this a bit safer, all files generated with SELECT ... INTO OUTFILE are readable to everyone, and you can't overwrite existing files. The file privilege may also be used to read any file accessible to the Unix user that the server runs as. This could be abused, for example, by using LOAD DATA to load `/etc/passwd' into a table, which can then be read with SELECT."

  20. Re:It's about time... by mami · · Score: 1
    it's a whole company, but do you know how much people they are? Don't always think of giants like Mircosoft or Intel when thinking of companies, MySQL is developed by just a few people (I counted 12 or 13 coders), and they are keeping the whole stuff platform independent, the server and the tools run an Windows, and many flavours of unixes.

    On the developer's mailing list of Akopia's Interchange open source e-commerce package, http://developer.akopia.com/archive/interchange- users/2001/msg00535.html , Monty Widenius said himself last week the following:

    Our development has during the last year grown from 2 1/2 to 8 people and we have also got a much bigger market penetration during this time.

  21. Re:Something neat by Micah · · Score: 1

    Hey, thanks, it works!

    Any ideas on how efficient it is for large tables? Does it have to internally randomly order the whole table before returning just one row?

  22. Re:Ten reasons to migrate from Postgres to MySQL by gallir · · Score: 1
    1&2: You are right, but still doesn't support BLOBS in tuples, which simplifies a lot the maintenance and programming.

    3. AFAIK, if you are sorting a table, which is very common in web pages, indexes reduces a lot the complexity of the sort. According to the PG docs, it's even makes use of temporary files for sorting data in case the output it's too big for doing it in memory.

    6. It means that the file is available in the client or server side. It's important if you want to "download" a file from the client or import the contents from a server side file. It affects access privileges as well.

    Regarding the remaining issues... you are right too.

    --ricardo

    --
    sgis ddo ekil t'nod i
  23. Re:Ten reasons to migrate from Postgres to MySQL by mami · · Score: 1
    There was an (unwanted) discussion broken out on the developer's mailing list of Akopia's Interchange open source e-commerce package last week.

    Michael Widenius gave himself some responses, which might be interesting for those following this discussion.

    Search http://developer.akopia.com/archive/interchange-us ers for "monty@mysql.com" or read the thread:"[ic] postgres versus mysql"

    Please don't post comments to that list if they are not related to "Interchange". Thanks.

  24. Re:3.23, Replication is powerful by FuryG3 · · Score: 1

    At a recent open source database conference-thingy down here in the SF bay area (sponsored by abriasoft), the mysql guys said that row level locking was a ways off. I, personally, was rather sad to hear that.

  25. Re:MySQL, bah! by Betcour · · Score: 4

    Say you have an e-commerce app... one table with orders, one with customer account.

    Now say you allow orders to be passed with or WITHOUT an account (don't want to force people on creating an account first).

    you have in your orders table a "customer_account" field, can be NULL or can a foreign key to the customer table.

    Now you can do this in MySQL :

    SELECT * FROM orders LEFT JOIN customers ON orders.custumer_account=customers.account_name WHERE (blablabla)

    And then you have in your results either only orders info (if custumer_account is NULL) or orders AND customers info at the same time. No need for two separated requests...

    So LEFT JOINS are quite usefull in any table that has a foreign key that can be NULL.

  26. Re:Something neat by Micah · · Score: 1

    yeah! is there an efficient way of doing that with PostgreSQL? I'm currently selecting count(*) from the table, then picking a random number from that group and selecting the row. Probably not the best method. Thanks!

  27. 3.23, Replication is powerful by TheCorporal · · Score: 3
    Yes yes, I would have to say the most important in the final stable release of 3.23 is the fact that they have fully working Replication now! Yee ha, talk about a timesaver for our dual DB system.
    One way replication can be used is to increase both robustness and speed. For robustness two (or more) systems can used to switch to a backup server if you have problems with the master. The extra speed is achieved by sending part of the non-updating queries to the replica server.
    Who can resists? Hehe Ill bet a lot of you can, and probably are still peeved about its lack of lots of stuff. But hey, its a step in the right direction right? I was just wondering though, do they have any row-locking features yet? I am too lazy to look =)
    --
    "On weekends, to let off steam, I participate in full-contact origami."
    1. Re:3.23, Replication is powerful by et · · Score: 2

      NuSphere is adding row-level locking. They were one of the companies that invested in MySQL and allowed it to be GPLed. The press release talking about it is at: http://nusphere.com/releases/103000.htm
      They say it is targeted to be available in spring 2001. It sounds like they are implementing yet another storage architecture. They say it will have transactions also. So if you want transactions you will have two table types to choose from Gemini (NuSpheres new one) and bdb that is new with 3.23. So we are seeing open source competition between different modules within an open source project. And it seems each new one is better than the last.

    2. Re:3.23, Replication is powerful by Hurricane_Bill · · Score: 1

      From what I have heard, row level locking is coming in June/July timeframe.

    3. Re:3.23, Replication is powerful by eightball · · Score: 1

      I take it from your statements that you are assuming the slave is a read only copy of the other database.

      You can set up and I have set up two mysql servers that replicate against each other, so you can update either node.

      While testing this setup, hitting each side with hundreds of queries per second (sorry can't remember the exact numbers at this point). The only problem I had was the logs filled up the 18gb disk in a day. No data was lost.

      Not sure how much more fault tolerance you need in a free product...

    4. Re:3.23, Replication is powerful by krow · · Score: 3

      I like MySQL, but I am hard pressed to call what they implemented replication. It has zero ability to handle fault tolerance and I don't think that people who are accustom to the big comerical databases are really going to consider it for critical applications until this is implemented well.
      I really wish they would have just called this a RO load balancing option, since when you invoke the word replication it means a lot more.

      --
      You can't grep a dead tree.
  28. It's about time... by Betcour · · Score: 2

    I think MySQL developpement is slloooowwwwwwww. You would think a whole company dedicated to MySQL would allow for lots of new features coming out every week.

    Well, they have been working on the 3.23 for about half a year and all they managed to do is implement a basic transaction feature. And they didn't even did it really by themselves, they had to take some code from the Berkeley DB and use a different table file format.

    I guess by 2017 we can expect to have nested queries, 2045 for row-level-locking and 2078 for true foreign keys... at least Postgresql, with all the its flaws, is improving at a much faster pace and we can expect a whole lot of migration from MySQL to Postgresql sometimes in 2001/2002.

    1. Re:It's about time... by Betcour · · Score: 1

      Actually I don't blame them for the time it took to add transactions - this is IMHO a very difficult feature to add with major implications everywhere. But queries caching and nested SELECT aren't very hard to implement and should be on the "top priority list" :

      Query caching is simply a matter of keeping SELECT results somewhere and ditching them when an UPDATE/ROLLBACK comes in. I guess MySQL team is more interested in fixing some obscure bug with DB replication than speeding up their database by several order of magnitude...
      As for nested SELECT, why don't we have them yet ? Is it so hard to run QUERY #1, then feed the result into QUERY #2 ? Heck, we all do it ourselves on the client side of MySQL with a loop in PHP/PERL and it takes 5 lines of code... shouldn't take that much to implement in MySQL itself !

      Postgresql doens't have 13 full time coders working on it, yet it has much more functionnalities, and according to the latest benchmarks around, has gotten faster than MySQL.

    2. Re:It's about time... by Betcour · · Score: 1

      That might be an issue if performance were a problem. Most web sites built on MySQL get results plenty fast without having to cache things.

      Excuse me to tell it this way : this is a very short sighted answer. Web sites tend to grow, and sometimes they grow big enough that the DB server start crawling to its knees under the load. You can never have to much optimized software. Slashdot needs a 4 CPU system to run MySQL... maybe with queries caching it could do the same job with just one CPU and an extra gig or RAM (forums are a lot of read and just a little of write). That's a lof of money saving !!!

      Secondly, so request can still be pretty slow on MySQL. I use it to generate charts from 1000's or record... even with indexes and lots of work on the queries it's somewhat silly to run again and again the same queries when they could be cached.

      MySQL's niche is web sites. The web is inherently session-based.

      So ? Because it's the web means you don't need rollbacks ? What if, behind the web site, you have e-commerce, statistics manipulations, etc ? What if your user have points they can trade ? Wouldn't that require at least sessions ? What if I'd rather use nested SELECT than code some ugly loops in PHP to do it with several queries ?

      Because MySQL is targeted to the Web doesn't mean it is ok to have no professionnal features. people do important things now on the Web (except porn, but then even porn can be good money ;)

    3. Re:It's about time... by tagish · · Score: 1

      I know it's a bit trite, but the source is there if you want to add those features yourself.

      --
      Andy Armstrong
    4. Re:It's about time... by JohnZed · · Score: 4
      Umm... maybe you read a different changelog than I did, but I think that the new features are extremely substantial and useful.
      • Full text search -- This is huge for me, and probably for most other web sites that use MySQL. It's also very non-trivial to implement.
      • New table types -- MyISAM, BDB, heap, etc. are all huge improvements over the old ISAM format.
      • Replication -- Another HUGE feature: load-balance between slave databases, yum. . . This was actually sponsored by VA Linux so /. could use it, right? Wonder how it's working out these days. . .
      • Many smaller things -- Improved maintenance tools, new SQL functions, basic transactions, etc.


      I'm just disappointed they didn't bump up the version number further to let people know how substantial the release really is.

      --JRZ
    5. Re:It's about time... by rabtech · · Score: 1

      But it still doesn't have foreign key support, transactions, true stored procedures with views, a variety of integrity checks, etc....

      I would *never* consider running anything that needs 100% data safety on MySQL.... There are other open-source alternatives, or for those with open minds (and pocketbooks), closed-source databases. Each of which have much better features and support.
      -
      The IHA Forums

      --
      Natural != (nontoxic || beneficial)
    6. Re:It's about time... by eightball · · Score: 1

      Slashdot needs a 4 CPU system to run MySQL... maybe with queries caching it could do the same job with just one CPU and an extra gig or RAM (forums are a lot of read and just a little of write). That's a lof of money saving !!!

      eww, I do not want to know where those facts came from.

      The point isn't: can I come up with a situation in which it is pointless to use a product. If your web server gets that big, then maybe you can afford the 'REAL BIG DB', but why spend tons of money when you don't even know you'll be getting your money's worth.

      One of the great things about SQL is it is pretty much uniform. To change from mysql to oracle could probably be done with sed; of course the 'transaction' parts would probably need to be rewritten, but then again, so does most software when it is meant for an order of magnitude or more than it was originally used at.

    7. Re:It's about time... by Schoos · · Score: 1

      I see, you didn't get into MySQL that deep: They let their (paying) customers decide what features they like next. And if everybody wants replication and transaction, then they do ist.

      Also Subqueries is not that big problem: You said, five lines of code. But you can't do replication or transaction within five lines of client code.

      So I really can understand that they did these two points first, and subquerys are on the todo list.

      --
      Michael Bergbauer (michael.bergbauer@gmx.net)
  29. Re:MySQL is not alone in the OpenSource World. by hexx · · Score: 3

    In the open source world, I find two RDBMS especially good. PostgreSQL and Interbase. They are both fine products and probably near commercial grade RDBMS standard.

    Now, would that be Interbase with or without a compiled in superuser backdoor account? :)

    Of course, for pure SELECT power, nothing beats MySQL. So if you're not inserting data too often, and you don't mind running ISAMCHK every now and then, and data integrity isn't entirely critical (which does work for a surprising number of people), then yay MySQL!

    I use it.

  30. Re:Whither Foreign Key Support? by Osty · · Score: 1

    Don't you just love the way MySQL gives reasons not to use SQL features they don't support? And not just foreign keys, either, but transactions as well, among other things. Yeah, yeah, yeah, there's now rudimentary transaction support via BDB. Not that I'd trust any important data to something that is considered "rudimentary".

    Then again, some people just have to reinvent the wheel several times over. One could wish that MySQL would just go away, in favor of more mature products that are also "Free". It won't happen anytime soon, but we can dream.

  31. NULL in indexed columns by krokodil · · Score: 1

    It allows NULL in indexed columns!

    1. Re:NULL in indexed columns by samjam · · Score: 1

      uniqueness of what? Data!

      But null means "no data" it is not some special data value.

      If you don't want nulls, say "not null" in the column definition, but it has been a source of greif to me that I couldn't index on a field just because I didn't have a value in every case.

    2. Re:NULL in indexed columns by Moosbert · · Score: 1
      The SQL standard allows (multiple) NULLs in unique indexes. The relevant portion reads: (8.9 GR 2)
      If there are no two rows in T such that the value of each column in one row is non-null and is equal to the value of the corresponding column in the other row according to Subclause 8.2, "<comparison predicate>", then the result of the <unique predicate> is true; otherwise, the result of the <unique predicate> is false.
    3. Re:NULL in indexed columns by krokodil · · Score: 1

      I am saying it is good news.
      I was not able to use indices on
      coulymns which could contain NULL.

  32. Re:Congratulations to the team by kennymacleod · · Score: 1

    That's hardly fair. MySQL is in no way "equivalent" to MS SQL Server, which is in the class above.

    That said, you could just as easily use Sybase ASE on linux, which is effectively free, and is a proper RDBMS.

  33. MySQL .21 reportedly has a buffer overflow by Tom7 · · Score: 2


    If you have local users, it's in your best interests to upgrade, since .21 reportedly has a buffer overflow. (See bugtraq) MySQL shouldn't be running as root, but the MySQL user often has access to non-public databases.

  34. Where is postgresql for solaris?? by tabbyTime · · Score: 1

    Went to the postgres site, downloads are only for linux, didn't see a source download. What gives? is it only supported on linux?

    1. Re:Where is postgresql for solaris?? by gimpboy · · Score: 1

      ftp://ftp.postgresql.org/pub/latest/

      use LaTeX? want an online reference manager that

      --
      -- john
  35. Re:Whither Foreign Key Support? by Johann · · Score: 2
    Check out Interbase. Some folks were turned off due to their troubles with releasing the code and the infamous backdoor.

    I have run it on Linux and NT for the past 6 months. I built a real estate lease entry and tracking system using Interbase, PHP, and Apache. It does support full transactions. It does support full FKs. I don't know how it compares to PostgreSQL, but PG was not an option as the client only has NT for the server.

    --
    "You're gonna need a bigger boat." - Chief Brody
  36. Re:MySQL, bah! by gimpboy · · Score: 1

    With PostgreSQL so far I've had to use two queries. If there's a way around that someone please tell me. :-)

    are you referring to the except clause in select? it uses a subquery, but i think it's still considered one query.

    use LaTeX? want an online reference manager that

    --
    -- john
  37. Tell Red Hat! by COLUG · · Score: 1

    Once they find out that they have something stable in their distribution, they will have to change it as a matter of "Company Policy." :^)
    ---------

  38. Re:MySQL is not alone in the OpenSource World. by Johann · · Score: 2

    I think you can make the argument that Interbase lost 'the battle' because they have a lousy marketing department. Until Interbase went Open Source (tm), I had never heard of it even though I have been building Oracle and Sybase applications for the past 5 years.

    Sounds more like a marketing problem than a functionality problem.Interbase has cool features that other 'commercial' RDBMS do not have (like events).

    --
    "You're gonna need a bigger boat." - Chief Brody
  39. Re:Something neat by Moosbert · · Score: 1

    SELECT * FROM tablename ORDER BY random() LIMIT 1;

  40. Re:Whither Foreign Key Support? by Moosbert · · Score: 1

    PostgreSQL runs on Windows NT just fine.

  41. Ten reasons to migrate from Postgres to MySQL by gallir · · Score: 3
    I am one of the team doing PHP development for the Balearic Islands LUG. The current system runs with PostgreSQL and we were analysing the convenience of migrating to MySQL.

    Find enclosed some of the conclusions:

    1. PG does treat BLOBs as part of a tuple, MySQL does.
    2. There are serious problems with PHP and PG transactions for reading and writing BLOBs in the database. PG forces to use transactions, MySQL doesn't.
    3. PG doesn't use any index to speed up sorts (ORDER BY clauses), MySQL does. This is a problem for web pages were most of the result are ordered according to articles IDs or modification dates.
    4. PG, as in V7, doesn't accept tuples of more the 8KB, 32 KB support can be selected at compilation time but speed is seriously affected. There is not this kind of restrictions in MySQL.
    5. PG does not accept "full-text" indexing and queries.
    6. In MySQL you can choose if a file to be imported is being read by the backend or the frontend.
    7. You have to run VACCUM ANALYZE in PG from time to time in order to get your queries optimised.
    8. PG doesn't allow to do BLOB content search, MySQL does.
    9. PG accept RULES for executing SQL sentences on table insert or updates, MySQL doesn't.
    10. NASA has migrated one of their webs to MySQL ;-)
    We found that the previous reasons justify the migration to MySQL.

    --ricardo

    --
    sgis ddo ekil t'nod i
    1. Re:Ten reasons to migrate from Postgres to MySQL by dhogaza · · Score: 1

      3. What does MySQL do if your sort doesn't fit in memory? Give up? Crash? Or use temp files?

      Postgres supports tables which exceed the operating system file size limit. Many of us can't afford processors with more then 2 or 4 GB of RAM. I don't think the fact that Postgres will let me sort files that don't fit in memory is a weakness ...

      Of course in the web environment sort results are likely to be relatively small, in which case they'll fit in RAM just fine assuming you've set the postgres per-sort limit to a reasonably large value.

      Again, in some cases being able to sort directly on indices does make a difference, in other cases it doesn't.

      1&2. The BLOB interface is a bit clumsy, true. However as of PG 7.1 pg_dump will make consistent snapshots of databases containing BLOBS, which can then be restored. I don't really see the fact that you need to use the interface in a transaction as a bad thing, though people who are used to not using transactions (most MySQL users) might think it is. After all, if your BLOB insert dies you generally will want to roll back any related inserts ...

      The clunkiness of the BLOB interface isn't a big deal for most websites. Even if you're dealing in images, word files, etc the fact of the matter is that in a well-designed system the low-level details will be abstracted into a small set of routines. It does work ...

      6. The BLOB interface lets you import files directly, for instance those files that a client "downloads" from the web which are stuffed into a temp file by your webserver ...

    2. Re:Ten reasons to migrate from Postgres to MySQL by gallir · · Score: 1
      3. I meant (or tried to) that sorting might be very expensive and if they dump some info in temp files, that info is already available at indexes when dealing with single tables.

      1&2. We had problems with LO+transation in PHP4 and PG7.0. The LO remained unaccesible for several minutes and the calling PHP program stayed deadlocked.

      6. When downloading files from the webserver, almost everything is done by PHP, which stores the file in a server disk. What I meant is that when importing from a client (front end) program that can run in the same machine as the backend or in another... PG doesn't allow it.

      --ricardo

      --
      sgis ddo ekil t'nod i
  42. Re:MySQL, bah! by Moosbert · · Score: 1

    The PostgreSQL HOWTO at the LDP was written by a moron and is in no relation to the PostgreSQL project. Just a couple of days ago the LDP webmaster finally yanked it.

  43. ... and still this bug isn't fixed by SnapperHead · · Score: 1
    I reported this bug a while back and its STILL not fixed. They won't even acknowledge it has a bug. MySQL DOES NOT work using PAM LDAP.

    So, I am suck running MySQL as root becuase that get it taken care or ... ARGGGGGGGG!


    until (succeed) try { again(); }

    --
    until (succeed) try { again(); }
  44. Replication, Transactions, etc. by gjt · · Score: 1
    How does this compare with PostgreSQL and Interbase?

    Which databases support replication and transactions?

  45. Mysitfied as to it's apeal by FatHogByTheAss · · Score: 1
    I never ceased to be amazed the lengths people will go to to install a substandard database product like MySQL when Postgres is as free, and far more capable. It even ships with some Linuxes, fer crying out loud.

    --

    --

    --
    You sure got a purty mouth...

  46. Comment removed by account_deleted · · Score: 3

    Comment removed based on user account deletion

  47. Re:Ahem: by Betcour · · Score: 1

    MySQL doesn't recognize or enforce foreign keys. But you can still make fields that hold values that are keys to other tables, which, according to my relational DB course, is what you call a "foreign key" :-)

    I think the MySQL syntax even allows for the keyword "FOREIGN KEY" in table definitions (and they even plan to sometimes save this information somewhere, maybe there's hope !).

  48. Congratulations to the team by SweenyTod · · Score: 3

    Well done guys and girls.

    I'm of the opinion that along with several other open source applications, MySQL is what's helping Linux make large inroads to the enterprise market.

    A while back I priced a WinNT solution for a basic e-commerce site, with MS-SQL 7, ASP, and all the rest of the NT fluff needed. It came to over $5,000 Australian dollars (about $7.33 USD :) The equivilent freeware solution came to exactly zero dollars (duh). (hardware costs not included, btw).

    MySQL was a large part of the equation. I was and still am very impressed with it.

    Again, well done to the team.

    --
    Alas gallinaceas de urbe bovis volo
    1. Re:Congratulations to the team by KenSeymour · · Score: 1

      As far as I know, Sybase ASE is not free for "e-commerce".

      --
      "We can't solve problems by using the same kind of thinking we used when we created them." -- Albert Einstein
    2. Re:Congratulations to the team by Malcontent · · Score: 1

      What's conversion rate for australian dollars?. SQL server 2000 costs $5000.00 (US) per processor. If I wanted to do that in the US it would most likely cost much more. A dual processor machine runnng NT, sqlserver 2000, and a few odds and ends (a decent FTP server, remote control, admin utils, reskit, backup etc would easily set you back 10-12K or so.

      --

      War is necrophilia.

  49. GPLed by aozilla · · Score: 2

    The biggest "feature" of 3.23, of course, is the fact that it's GPLed. 3.22 is not. As for switching to Postgresql, I need enum, I need mediumint(5) unsigned zerofill. To some extent it's just programmer laziness, but it's nice to have your code not need to do so much data type checking and formatting. User-defined data types and/or stored procedures would be preferrable, then I wouldn't have to use tinytext for urls, for instance, but for now the only two real choices are MySQL and Postgresql.

    --
    ok then your [sic] infringing on my copyright! Could you as [sic] me next time before STEALING my comments for your own?
  50. Whither Foreign Key Support? by Carnage4Life · · Score: 5

    I was really hoping that proper foreign key support would be added by know but was dissappointed to see it missing from the list. I decided to see if it was in the TODO list and was surprised to see full foreign key support in the Things that have to be done sometime section instead of the Things that should be in 4.0 or the Things that must done in the real near future sections. So it looks like full foreign key support won't be around till 5.0 or later. *sigh*

    Lack of full foreign key support (and maybe transactions) is the only reason I don't consider mySQL a proper relational database management system as it claims sinceit doesn't enforce relationships via referential integrity checks. In many large complex applications, having referential checks built into the DB is very useful and it would be a great boon if mySQL had this functionality.

    Grabel's Law

    1. Re:Whither Foreign Key Support? by Micah · · Score: 1

      So why don't you use PostgreSQL? It's had foreign keys since last May. The release 7.1 that's coming out soon will fix limitations like the 8K row length limit and will add outer joins and some other stuff. I'm running the beta3 now on a test box and it seems pretty sweet.

    2. Re:Whither Foreign Key Support? by krokodil · · Score: 1

      8K limit in Postgress makes it unacceptable
      for many users. Yes, it will be lifted soon.
      So I heard. Let us talk when. Meanwhile MYSQL
      is here and does the job.

    3. Re:Whither Foreign Key Support? by Micah · · Score: 1

      That limit will be lifted VERY soon. 7.1, which removes it, is in beta 3 and may be finalized any day. Almost certainly by early Feb.

    4. Re:Whither Foreign Key Support? by Pedersen · · Score: 1

      Excel does better, though, as it can have stored procedures, in the form of macros :)

      --

      GPL made simple: What was my stuff is now our stuff. If you improve our stuff, please keep it our stuff.
  51. MySQL, bah! by SnapperHead · · Score: 1

    Sure, it might be a _little_ bit quicker then PostgreSQL. But, I still belive PostgreSQL is the better choice. But, its good to hear its now a stable version. Maybe they can start adding things like sub selects and what not.
    until (succeed) try { again(); }

    --
    until (succeed) try { again(); }
    1. Re:MySQL, bah! by bradfitz · · Score: 1
      Um, Does Postgres even support LEFT JOIN yet?

      They both suck in a lot of areas.... don't bash one without bashing the other.

    2. Re:MySQL, bah! by Micah · · Score: 3

      That's also the case when you have two tables, say customers and widgets, and customers can have any number of widgets, including zero. Say you want to display a list of all customers and the number of widgets they have. Implementing it with a simple join, customers with no widgets simply won't show up in the result set. With MySQL there's a way to do it right with left joins. With PostgreSQL so far I've had to use two queries. If there's a way around that someone please tell me. :-)

      That's the biggest disadvantage of PG I've found, and it's not *that* big a deal.

    3. Re:MySQL, bah! by NonSequor · · Score: 1
      According to the PostGreSQL Howto development on MySQL will eventually be stopped since it is duplicates work being done for PostGreSQL. Not that I trust it. That howto is rather strange at times. Very strange at other times.


      "Homo sum: humani nil a me alienum puto"
      (I am a man: nothing human is alien to me)

      --
      My only political goal is to see to it that no political party achieves its goals.
    4. Re:MySQL, bah! by Fast+Ben · · Score: 4

      Does Postgres even support LEFT JOIN yet?

      The LEFT JOIN is something I wish they (Postgres) would put in, but then, Oracle don't support it either...
      The reasons I prefer Postgres are, to name a few:
      Transactions
      Sub SELECT's
      Using CASE WHEN ... END when SELECTing from tables with 30,000+ rows is very fast (another thing Oracle don't support at all)

      Postgres used (pre 6.5.3 i think) to have some memory leaks when using transactions, but this seems to have been fixed in later versions.

    5. Re:MySQL, bah! by SnapperHead · · Score: 1
      No, I have ran into this problem with it. They both have there pros and cons. But, over all, I personally think PostgreSQL is the better choice. Yet, this depends on what you are doing.


      until (succeed) try { again(); }

      --
      until (succeed) try { again(); }
    6. Re:MySQL, bah! by baywulf · · Score: 2

      The next version of PostgreSQL (in beta testing right now) is supposed to support outer joins, larger row size (8-32K limit currently) and write ahead logging among other improvements.

    7. Re:MySQL, bah! by bradfitz · · Score: 1
      Good to hear....

      The row size limit is what really turned me away from Postgres originally.

    8. Re:MySQL, bah! by SnapperHead · · Score: 1

      This is a valid point. Someday, its going to be duplicate work. They are completly different types of databases. Plus, compition is good.
      until (succeed) try { again(); }

      --
      until (succeed) try { again(); }
    9. Re:MySQL, bah! by e4 · · Score: 1
      Um, when did Oracle stop supporting left joins? I've been using them since at least Oracle 6...

      A quick search on Google turned up plenty of examples, like this one.

    10. Re:MySQL, bah! by bradfitz · · Score: 1
      real world!?!?

      Hell, I can hardly think off a large db application where I haven't used LEFT JOIN.

  52. Shameless Plug: Easy MySQL Installation Product by arc.light · · Score: 2

    AbriaSoft has a free download for "AbriaSQL," a distribution of MySQL, PHP, and some other stuff with a wizard-driven interface that takes just a few minutes. It fixes the MySQL install problem in RH7, also. Check'em out...

  53. Joke? by Fervent · · Score: 2
    from the congratumlations-to-all dept

    Someone fill me in. I don't get the joke.

    Or is it just a really bad typo?

    -
    -Be a man. Insult me without using an AC.

    --

    - I don't care if they globalize against free speech. All my best free thoughts are done in my head.

    1. Re:Joke? by American+AC+in+Paris · · Score: 3
      from the congratumlations-to-all dept

      Someone fill me in. I don't get the joke.

      Or is it just a really bad typo?

      No, no...it's just a minor problem with MySQL data integrity. It seems to happen a lot here on Salshdot...

      information wants to be expensive...nothing is so valuable as the right information at the right time.

      --

      Obliteracy: Words with explosions

    2. Re:Joke? by MadAhab · · Score: 1
      Did you mean "integrimaty?"

      ObSubheadlineTroll: Taco's ass just declared a continent!

      Boss of nothin. Big deal.
      Son, go get daddy's hard plastic eyes.

      --
      Expanding a vast wasteland since 1996.
  54. Re:Declared Stable? by -brazil- · · Score: 1

    There's applications where you simply don't need transactions (anything without interdependencies between different acions). They may not be sophisticated, but they're quite numerous. Thus, a DBMS without transactions is much more useful than a knife without a handle. If it were different, MySQL would not be so widespread.

    --

    The illegal we do immediately. The unconstitutional takes a little longer.
    --Henry Kissinger

  55. Re:I hope that they didn't sacrifice speed... by bad-badtz-maru · · Score: 1

    ==
    Postgres is trying for speed and MySQL for correctness.
    ==

    What are you talking about? I read your post five times and still can't figure out exactly what you are saying. With an opening statement of "Postgres is a mostly complete DB, with some things that need work. MySQL is a fast hack with little overhead.", one is left scratching one's head from the start. What makes Postgres "more complete" than mysql? How does one determine how much "overhead" mysql has? It looks like you might be trying to imply that postgres's SQL implementation is more complete than MySQL's but the statement is too vague to know for certain. Finishing up with "Postgres is trying for speed and MySQL for correctness", the post closes with the reader trying to figure out what "correctness" would mean as it would supposedly apply to an RBDMS. Could you be any more vague in your assessment and comparison of the two systems? All this in a +5 post... argh!

    badtz-maru

  56. Re:MySQL is not alone in the OpenSource World. by bad-badtz-maru · · Score: 1

    ==
    MySQL have for many years been been considered as a very unstable product and that it have been (still are probably) lacking a lot of really useful features.
    ==

    I have never heard of any complaint of stability with mysql whereas postgres versions prior to 7 were well known for eating databases. As for useful features, how about the blob support in postgres? Oh yeah, it's nonexistent. I can argue this factually because I prefer postgres but let's not turn a blind eye to its shortcomings. As for interbase, with the backdoor discovery being so recent, it would be hard to consider that platform seriously until a complete security audit was performed on the code.

    badtz-maru

  57. Exactly! by jonfromspace · · Score: 2

    Not every aplication is going to be "Mission Critical" we have been using MySQL in my shop for a TON of applications. (Search Engine, Account Data, and for a LARGE scale File Sharing DB) While MySQL is not oracle, it's cost/performance ratio is pretty darn good.

    --
    I am become Troll, destroyer of threads
  58. Good upgrade by Animats · · Score: 3
    I've been running 3.23.28-gamma on NT for a while, with no problems at all. I'm glad it's made it to "stable". Now the main server (a Linux box) can get upgraded.

    The people who are reporting MySQL crashes should submit bug reports. The MySQL people claim they haven't lost data in years, and if that's not true, it needs to be publicized.

  59. Raves. by TheFlu · · Score: 3
    I just have to rave about the database replication included with MySQL, what a fantastic feature. If you are interested in setting up replication yourself, you should read the nice tutorial on it over at PHPBuilder. The tutorial can be found here.

    The replication feature has been changed a little since the tutorial was written, so you may want to check out the documentation at the MySQL site. Here's a copy of my own /etc/my.cnf file from both machines, which are setup for 2-way replication, for reference (perhaps I'll get around to posting a tutorial of my own later today on The Linux Pimp

    Main server /etc/my.cnf file
    [mysqld]
    log-bin
    master-host=ip_address_of_backup
    master-user=replicate
    master-password=your_password
    server-id=1

    Backup server /etc/my.cnf file
    [mysqld]
    log-bin
    master-host=ip_address_of_main_server
    master-user=replicate
    master-password=your_password
    server-id=2

    1. Re:Raves. by isil · · Score: 1

      great.
      so passwords are stored in plain text on potentially publicly readable config files.

  60. Re:MySQL is not alone in the OpenSource World. by Malcontent · · Score: 1

    That's because it actually cost more then SQL server. If the dolts over there at borland marketing dropped the prices and actually advertised it once in a while it might have stayed competitive. Of course their loss is your gain.
    You can go download a multiplatform, stable, easy to manage and maintain database that has been in production forever and is rock solid and has great documentation.

    --

    War is necrophilia.

  61. Re:MySQL is not alone in the OpenSource World. by pod · · Score: 1

    I second this statement. I would say it's been stable for at least 2 years as well, that's how long I've been using it. We are using MySQL to run a fairly large db (128+MB) (one that I would _not_ relish rebuilding) with over 8 queries/s (that's average over the last month, which is exactly how long ago I restarted mysql for an upgrade). There's nothing wrong with mysql stability-wise, definitely nothing wrong with its performance (if you turn off table locking), and if you can get by without transactions (for which there is support now with db3). I have to say I wouldn't use it for anything really important or involving money, but that's only because it's not a 'trusted name', so it's largely a perception issue.

    --
    "Hot lesbian witches! It's fucking genius!"
  62. Pronounciation by scriptkiddie · · Score: 1

    Everybody always says it's my-ess-queue-ell, but I don't believe them. Try this:


    mysql> select soundex("mysql");
    mysql> select soundex("mysequel");


    You see, even the MySQL developers think it's pronounced "sequel"! :)

  63. Real deal. by TheFlu · · Score: 2
    Okay here's the scoop:

    /etc/my.cnf is used to set global options
    mysql-data-dir/my.cnf is used to set server-specific options (RedHat defaults to /var/lib/mysql) or
    ~/.my.cnf to set user-specific options.

    My original post suggestion of /etc/my.cnf works fine, but it opens you up to the potential security issues discussed above, as isil so wisely suggested. I believe the proper thing to do is to put your my.cnf file in /var/lib/mysql. Thanks for the correction.

  64. I hope that they didn't sacrifice speed... by alexhmit01 · · Score: 5

    This is what I love about the MySQL/PostgreSQL silliness. Postgres is a mostly complete DB, with some things that need work. MySQL is a fast hack with little overhead. For real solutions where you can apply heavy engineering, MySQL's speed advantages can be mitigated away. However, it serves a niche.

    If you have a little web site (or even a big one) where integrity is not key and ease of setup is important, MySQL serves that niche. If the improvments don't sacrifice their advantages, go MySQL. However, if they move towards completeness at the expense of speed... well, how silly. We already have Postgres...

    Postgres is trying for speed and MySQL for correctness. Yeah... we get two similar systems. I would rather they focus on their advantages so we maintain two useful system.

    As a lover of DB theory, I hate MySQL. As a lover of low barriers to entry, I love it. I'd hate to see MySQL lose it's niche by becoming too general.

    Alex

    1. Re:I hope that they didn't sacrifice speed... by Karora · · Score: 3

      Performance is critical in _any_ database, and you can't add features at the expense of performance and expect to keep your customers happy. You can add slowish implementations of new features, but you better not downgrade existing performance.

      PostgreSQL 7.1 is now in beta and should be out by the end of February (maybe earlier). With support for column sizes up to 2GB(!), as well as many other refinements, I certainly don't think that they are sacrificing feature efforts to performance enhancement.

      That's not to say I find it slow either. My most recent web development (replacing a prior ASP/MSSQL/IIS installation :-) at http://newsroom.co.nz/ manages to do around 30-odd queries for the front page and still pops it out in just under 0.1 of a second on a Duron 700 based system.

      I looked at MySQL (and I help out a client who uses it on occasion), but the potential performance improvement isn't worth it to me to lose all those neat features.

      --

      ...heellpppp! I've been captured by little green penguins!
    2. Re:I hope that they didn't sacrifice speed... by theonetruekeebler · · Score: 2
      Well, performance (defined as quickness) is nice, but it is only one of three critical prongs, the other two being integrity and availability. If it's fast, but tends to crash halfway through a write operation, you don't have integrity. If it's stable but has to be taken down for an hour a day for maintenance, you don't have availability.

      The glib statement is that among speed, integrity, availability and affordability, you can pick three. InterBase kind of spoils the equation, but when you compare MySQL, PostgreSQL, and, say, Oracle, you get the idea.

      Disclaimer I had Chinese food for lunch.

      --

      --
      This is not my sandwich.
    3. Re:I hope that they didn't sacrifice speed... by alexhmit01 · · Score: 2

      Correctness = Proper RDBMS Implementation.

      SQL is a language for interfacing with RDBMS, not a reason for existance.

      I've worked with both. I like that MySQL is fast with little effort. Connection pooling can mitigate the speed issues, but there is more work in that.

      Again MySQL is good for a user with little RDBMS needs that needs a quick way to access data. Postgres is close to being a "real" database.

      Alex

  65. Re:MySQL is not alone in the OpenSource World. by Malcontent · · Score: 1

    Interbase IS a commercial grade database. It has been for years and many companies paid big bucks for licenses until it became open source. It's really really solid.

    --

    War is necrophilia.

  66. Re:MySQL is not alone in the OpenSource World. by Malcontent · · Score: 1

    "Now, would that be Interbase with or without a compiled in superuser backdoor account?"

    It took open sourcing to ferret that one out.
    Makes you wonder what other back doors exist in all other products too.

    --

    War is necrophilia.

  67. Hey, that feature is already available by Penguin · · Score: 1

    Well, it was possible to do something similar in 3.22 with a little hack. Like:

    SELECT id, name, ((id*0)+rand()) AS random FROM table ORDER BY random;

    Each row will have its own random value in the on-the-fly-generated field "random". And as usual, you are able to perform an ORDER on each field in the result.

    --
    - Peter Brodersen; professional nerd
  68. Re:Something neat by Betcour · · Score: 2

    You could already do that before with some trickery :

    SELECT something, (RAND()*10) as random FROM table ORDER by random LIMIT 1

    the *10 is necessary or MySQL would optimize the request and compute RAND() one time for all rows...

  69. MySQL is not alone in the OpenSource World. by kaunio · · Score: 4

    If find the big support for MySQL somewhat surprising. When I'm running a RDBMS, I want stability, even if it happen to be a commercial or a open source one.

    MySQL have for many years been been considered as a very unstable product and that it have been (still are probably) lacking a lot of really useful features.

    In the open source world, I find two RDBMS especially good. PostgreSQL and Interbase. They are both fine products and probably near commercial grade RDBMS standard.

    So even if MySQL is now considered stable. So what? We have other choices, which have been developed with great care for many years and have been added features from their stability, not the opposite.

    So in my humble opinion, if you want to run anything (semi)serious, definately do not run MySQL, there are MUCH better options out there.