Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×
Data Storage

MySQL 5.0.0 (Alpha) Released 273

ulrikp writes "Swedish MySQL AB, makers of the MySQL database, have released an Alpha-version of their flagship, dubbed MySQL 5.0.0. The changes include basic support for SQL-99 stored procedures. Please note: Despite the version number, this is an Alpha release, and not for general consumption."
This discussion has been archived. No new comments can be posted.

MySQL 5.0.0 (Alpha) Released

Comments Filter:
  • by chill ( 34294 ) on Thursday December 25, 2003 @02:32PM (#7808746) Journal
    This means that whenever it is stable and ready for production, it is going to have a random version number. Not the smartest practice.

    It would help if the major stable releases were .0 and not .rnd()

    -Charles
    • by Rosyna ( 80334 ) on Thursday December 25, 2003 @02:35PM (#7808761) Homepage
      FWIW, MySQL AB has always used funky version numbers like this. 4.0.0 was alpha, looks like every release of 4.1 is alpha and 5.0.0 is alpha. 5.0.32 might be stable.
    • by Anonymous Coward
      Just avoid MySQL 5.0.0 and upgrade to MySQL XP when it comes out.
    • by Doc Ruby ( 173196 ) on Thursday December 25, 2003 @03:31PM (#7808992) Homepage Journal
      In the spirit of the interesting compatibility version numbering post [slashdot.org], informative version numbering is straightforward. Every version of software should be go through alpha, beta and release versions, for each change. When starting to edit the source code, increment the version number first. The number to increment, whether .., is determined by kind of compatibility the change will discard [slashdot.org] from the previous version: major=GUI/features, minor = data formats / APIs, build/patch = bugfixes. Once the number is first incremented, it is an ALPHA version, for testing/revision within the group (even of one person) that has developed it (any designers or programmers). Once alpha testing is complete within the developer group, whose preconceptions influence their testing, it is a BETA version, for testing outside of the developer group (customers, end users, random taste tests). Once beta testing/revision is complete, when all revision is complete, it is a RELEASE version, for another round of idiot-check retesting, usually by the release team testing with the packaging and distribution tools, with marketdroids given a more serious voice, when they take responsibility for unleashing it on the market. When alpha, beta or release phase revisions change compatibility with the previous version's GUI/features or data formats / APIs, the major or minor version number, respectively, is incremented, and it goes back to alpha testing. So an app might have version numbering like:

      2.3 (released) -> 2.3.1a -> 2.3.1b -> 2.3.1 (released) -> 2.4a -> 2.4.b -> 2.4.1a -> 2.4.2a -> 2.4.3a -> 2.4.3b -> 2.4.4a -> 2.4.5a -> 2.4.5b -> 2.4.5 (released)

      The versions released would be known only as 2.3, 2.3.1, and 2.4.5. 2.3 would be binary compatible with 2.3.1, and the same GUI and features, but 2.4.5 would only look and feel like 2.3, without binary compatibility (either data formats or APIs). This scheme makes version numbers actually useful, to consumers, new developers, and even automated interoperability systems (a la apt-get). It also offers an incentive to keep version numbers lower, as higher numbers reflect more changes (get it right the first time). At least in the minor and build/patch numbers. Most importantly, it reflects a reasonable test/revise/release discipline. So the numbers are the tail, wagged by the dog.
      • FYI, the Postgresql Global Development Group does something similar. They release 7.4beta1, 7.4beta2, 7.4beta3, then 7.4rc1, 7.4rc2, etc... Then, after release, they go to 7.4.1, 7.4.2, etc...

        The added advantage is that they sort alphanumerically according to the order they were released in.
        • I think it's funny that some devteams release a series of betas, *and* release a series of "release candidates". Is the extra "RC" round a series that merely tests the packaging and distribution, with all other code frozen?
          • Exactly. When Postgresql reaches the point of being ready for beta, it goes into feature freeze. Code can be changed, but only for bug fixes, or to finish half-finished features. Once it enters rc status, it is now in code freeze, where only actual bugs can be stomped, no more tweaking of beta features.

            It results in a remarkable strong release system. Check out the release notes for 7.4.1: http://www.postgresql.org/news/169.html Almost none of these bugs would be considered a show stopper really. Als
            • I wonder if interteam communications are sophisticated and clear enough to actually have separate versions for each interop factor. That is, a given software version would have a version for each of its GUI, features, API, and data formats. With major=incompatible, minor=compatible, and build/patchlevel. Like 3.1.1:2.5:4.2.2:2.2, or G3.1.1:F2.5.4:A:2.2. With merely incremental numbers, like v1, v3, v15, as the release numbers. Probably too complicated.
  • Very nice (Score:2, Interesting)

    by nnnneedles ( 216864 )
    I've been wanting sub-queries and stored procedures for a couple of years now.

    This is sweet, professional level db programming for free might have an incredible impact on the web

    Don't forget that most of your favorite sites probably use MySQL.
    • Re:Very nice (Score:1, Informative)

      by Anonymous Coward
      To name just one: PostgreSQL is free and contains subquries and stored procedures (and much much more). Also it has been using a much more professional approach than MySQL (which has oddities like allowing 2004-02-31 to be stored in a date field)
    • Re:Very nice (Score:4, Informative)

      by sketerpot ( 454020 ) <sketerpotNO@SPAMgmail.com> on Thursday December 25, 2003 @03:09PM (#7808897)
      Remember that PostgreSQL is also free, and has a number of very cool features. I'm not telling you which one to use, but do remember that MySQL isn't the first open source database to have those features, nor the only one.
      • Re:Very nice (Score:3, Informative)

        In my opinion, PostgreSQL is the superior database. Many of the features that are "alpha" in MySQL have been in PostgreSQL for years and are very mature. Using MySQL, there are features that I miss that are present in PostgreSQL. I haven't noticed the reverse at all.

        However, there are a couple of very good reasons to use MySQL:

        • Windows support is much better with MySQL than PostgreSQL.
        • Far more hosting companies support MySQL than PostgreSQL

        Personally, I couldn't care less about Windows support, but

  • Great, (Score:1, Flamebait)

    Now all it needs is (proper!) transactions, rollbacks and subselects, and then it might be suitable for a production environment.
    • Re:Great, (Score:4, Interesting)

      by nikolas ( 35223 ) on Thursday December 25, 2003 @03:14PM (#7808924)
      i am not much of a database expert, but i have used transactions, rollbacks (and commits :) as well as subselects with MySQL 4.1, so please enlighten me: what makes these feature not "proper" in MySQL?
      • Grandparent is a DB-fascist who doesn't think that programmers/admins are able to decide for themselves whether those features are needed in their particular application and thus should be required to use them in all cases.

        AFAIC, MySQL's support of a diverse range of table types with differing feature profiles is one of the greatest features MySQL has.

        • Come on, can't you see the situation (large company, dozens of people accessing the database) where it would be nice to have a version of MySQL where it just used innodb tables and enforced proper type checking by default? I sure could. I know I could sell MySQL to a whole other segment at work if it could do that.

          Choice is sometimes good, but being able to setup the database so as to not give that choice to users is also sometimes a very good thing.
        • True. If you don't need multi-statement transactions or whatever don't use 'em.

          But why are differing table types an advantage? PostgreSQL only has one table type, and I don't notice anything missing from it. I am still waiting for a MySQL advocate to come up with some feature that makes it somehow more useful than PostgreSQL. PostgreSQL guarantees the enforcement of all of your rules (i.e. foreign key, all types of constraints, etc), database wide, no matter what. MySQL people argue all day about why they
          • Re:Great, (Score:3, Interesting)

            by leviramsey ( 248057 ) *

            What I've heard is MySQL's main point in favor (at least on the MyISAM table) is the performance, especially on a command sequence that largely consists of SELECTs, with comparatively few write ops. It is probably reasonable to suspect that at least some of that performance advantage over (as near as I can tell) every other SQL (or near-SQL) implementation comes from not implementing the extraneous stuff.

            Thus, if you have an application where the queries are going to mostly be SELECTs (and the applicatio

  • eh? (Score:5, Funny)

    by chunkwhite86 ( 593696 ) on Thursday December 25, 2003 @02:48PM (#7808814)
    Who the hell is coding and releasing new versions on Christmas Day? Take a break!!

    And who is reading f$%king slashdot on Christmas Day too??

    Oh wait.
    • It's not christmas day everywhere at the same time you know.... here in fact it's 8am on Boxing day
    • by gspr ( 602968 )
      Well, seeing as MySQL AB is a Swedish company, and we scandinavians celebrate December 24th as the "main day" of xmas, it isn't that bad. Non-christian scandinavians don't care about December 25th.
    • And who is reading f$%king slashdot on Christmas Day too??

      I keep waiting for them to put a story about it being Xmas day on the front page so I can watch everyone say it's a dupe ('they posted this last year...'); I'm sure I'm not the only one.

      Who the hell is coding and releasing new versions on Christmas Day? Take a break!!

      If you look at the current poll [slashdot.org], it appears that 10% of Slashdotters will be coding...

    • Re:eh? (Score:3, Insightful)

      by krow ( 129804 ) *
      MySQL hires people from around the world, and not everyone celebrates Christmas (though for the company it is a holiday). Several people showed up to our scrum meeting this morning and I have spent the last couple of hours talking about a few slight changes to our protocol this morning.

      Personally I will later on be celebrating the day by watching Return of the King :)
    • And who is reading f$%king slashdot on Christmas Day too??

      I do (read my last two journals).
    • Re:eh? (Score:4, Funny)

      by KingDaveRa ( 620784 ) on Thursday December 25, 2003 @04:56PM (#7809308) Homepage
      And who is reading f$%king slashdot on Christmas Day too??

      People who care enough about stored procedures to ignore their family and check Slashdot. That's who.

      Its all about priorities.
  • no letup (Score:2, Funny)

    by GerbilSocks ( 713781 )
    Don't you geeks celebrate Christmas? My God.. can't slashdot just not post stories during the Holidays so then I don't have to visit so often

    This rant brought to you by a Squadron of Attack Kittens.

    • Don't you geeks celebrate Christmas? My God.. can't slashdot just not post stories during the Holidays so then I don't have to visit so often

      Most of the world does not celebrate Christmas, so why do you find it so amazing that people may be reading Slashdot on December 25th? Hell, I celebrate Christmas and am reading Slashdot because I don't feel like dealing with family.

  • I have to confess.. (Score:4, Interesting)

    by wackybrit ( 321117 ) on Thursday December 25, 2003 @02:57PM (#7808849) Homepage Journal
    I've been using MySQL 4.1 on a live server (with customers) for two or three months now. I basically wanted subqueries at the time, and so I just upgraded the box with disregard for everyone else ;-) Luckily everything worked great! There's a little quirk with Unicode if you play with the character type settings on certain fields (as long as you stay away from Unicode you'll be more than okay). I also occasionally have the server die when given certain lengthy queries, but it comes straight back, and gets on with things.

    So, no, it's hardly Oracle, but even MySQL's alpha stuff seems to be reasonably usable, as long as you aren't doing anything too serious. And, as any database expert will tell you, you probably aren't going to be using MySQL for anything that serious anyway. Nice work MySQL.. I'll spare my users from an immediate upgrade to MySQL 5 however.. for now!!
  • by tronicum ( 617382 ) on Thursday December 25, 2003 @03:09PM (#7808893)
    MySQL is still a database that is growing up. It is of course rock solid and fast (and good for some purpose), but it is missing some of the so called "enterprise" features ("real" replication, performant stored procedures, support from all the enterprise tools ("hot" backup solutions, etc))

    It is quite interesting what they are doing with MySQL-Max with seems to be their enterprise solution. They teamed up with SAP DB [sapdb.org], an open source database technology that SAP bought from Software AG [softwareag.com] to tease Oracle a bit. It is based on Adabas D [softwareag.com] a commercial database that has a "oracle compatibly mode" via ODBC [cbbrowne.com].

    It is quite interesting to see a mixture of SAP DB and MySQL united in MySQL-MAX. (Infoworld article) [infoworld.com]

    • Mainly it is missing support for normal SQL (92). They may be talking about "ansi 99 stored procedures", but what's the use as long as essential features in SQL (ansi 92) such as subqueries are still not supported, and as long as transactions are still an add on and not standard?

      Adding features before "growing up" is not a good sign. I don't call adding features before essential functionality growing up.
  • About MySQL (Score:5, Informative)

    by Albanach ( 527650 ) on Thursday December 25, 2003 @03:21PM (#7808954) Homepage
    Maybe since it's Christmas day we can't expect people to read the manual.

    Transaction support has been available with MySQL since 3.2x - that's over two years ago - you need to check what table type you are using. MySQL 4.x has replciation between master adn slave databases. Using replication you can easily do backups without taking down your live server. MySQL 4.1.1 Does subqueries. MySQL 5 should be where we get database clustering.

    Now, if folk want to start criticising MySQL without complaining about these features being absent, that'd be great.

    • How about foreign keys? I looked in the manual and STILL didn't see that.

    • Re:About MySQL (Score:5, Informative)

      by IANAAC ( 692242 ) on Thursday December 25, 2003 @03:55PM (#7809075)
      Transaction support has been available with MySQL since 3.2x - that's over two years ago - you need to check what table type you are using.

      The reason people continue to say there's no tranaction support is probably because ANY other database out there does not require you to explicitly specify what type of table is needed to actually get transaction support.

      I'll get modded as a troll on this one, but honestly, MySQL seems to do things opposite any other DB. The things you mention which are doable (transactions, subqueries) require significant rewrites to port an app to or from MySQL.

      • Re:About MySQL (Score:3, Informative)

        by leviramsey ( 248057 ) *

        There is an overhead to transactions and not every application requires transactions (for instance, a web board). Thus, having the flexibility to use transactions for some tables and not for others is actually a good thing. Use the right tool for the job.

        Now if only InnoDB supported all the features of MyISAM...

      • Re:About MySQL (Score:2, Informative)

        by errl ( 43525 )
        The things you mention which are doable (transactions, subqueries) require significant rewrites to port an app to or from MySQL.

        The only thing you need to do is change a line in the config file and specify the table type when creating the tables. I don't call that a significant rewrite to be honest. A simple search and replace would do it.
        • by rtaylor ( 70602 )
          I got bit once by the table type changing back to the default during an ALTER. I don't know if it has been fixed, but beware something like ALTER TABLE DROP COLUMN removing transaction support for those tables.

          Also remember transactions silently fail! You need to quadrouple check everything first since you cannot rely on the database to tell you something is wrong.

          I simply cannot trust myself to use MySQL for important data. Too many things to double and triple check are *still* correct and properly const
        • The "significant rewrite" I was referring to is regading (as I said in my original post) transactions and subqueries. I'll say it again, for the upmteenth time: MySQL does NOT conform to SQL standards. As a result, pretty much anything you've written on any other database will not work on MySQL without a rewrite. I'm talking about standard SQL that goes a bit beyond simple SELECT and UPDATE statements. I'm talking about date munging, varchar/char screw-ups, truncated unions, silly concatenation, etc.
    • > Using replication you can easily do backups without taking down your live server.

      > Now, if folk want to start criticising MySQL without complaining about these features being absent, that'd be great.

      You bet - so when are they going to support a free online backup solution that isn't a complete hack?

      I mean really - backing up your replication server? That's a pathetic solution...
      • [backing up your replication server? That's a pathetic solution]

        In a way, it's pathetic that this is the only way to do it; in another direction, though, it's a very smart thing to move any activity that doesn't need to happen on the primary (bottleneck) server to a secondary server instead.

        A similar practice is commonplace in the MS SQL Server world, running lengthly reporting queries on a secondary reporting database instead of on the primary.
  • I've just skimmed over the comments, and seen that a few people mention that MySQL is not yet ready for use on a critical server in the real world.

    Now, I'm no database expert at all, and I've only ever used MySQL for databases. But as far as I know, slashdot itself runs on MySQL (supporting evidence?) [slashcode.com]. Now, this is a site that gets a hojillion comments per article, several articles per day, with enough viewers to crush lesser sites at will. Surely this suggests that MySQL must be ready for "mission critic
    • by jesterzog ( 189797 ) on Thursday December 25, 2003 @06:01PM (#7809610) Journal

      One of the biggest problems with MySQL that so many people complain about is that the entire design philosophy is not one that supports data integrity. Take a look at the list of MySQL Gotchas [sql-info.de] for starters.

      The reason that it's satisfactory for slashdot is the same reason that it became popular in the first place. It was one of the first freely available database servers, and it had particularly fast benchmark results for situations that required lots of selects and not many updates. (I might be slightly wrong about the details, so someone correct me if necessary.) The fast-select advantage made it a popular option for websites a few years ago, because they involve just that. Lots of page-views (selects) and not many updates.

      On the other hand, the integrity aspect of MySQL makes it a pain to code for. The MySQL credo seems to be that if input doesn't make sense, then try to guess what was meant and don't report it. (eg. Inserting a null instead of reporting an error.) Furthermore, the MySQL parser recognises certain parts of SQL syntax that are ignored, and (again) not reported. Instead, it just doesn't do anything and pretends that it all worked.

      So instead of being able to rely on constraints set in the database, as can be done with nearly any other well-used database, it's necessary to put large amounts of integrity-checking code for things as simple as making sure that dates are the correct format. In some ways it's more like a half-built SQL interface to a regular file system than a database, with features for data integrity hacked on here and there if you know how to use them and always use them correctly.

      In slashdot's case, don't be surprised if a random comment goes missing every now and again, because the integrity support just isn't there without complicated overhead work that induces possible mistakes. Slashdot can get away with losing bits and pieces of data, but that's not usually the case. If I say that I want to put some data in the database and that it must meet specific rules, it should either put it in or result in an error. MySQL doesn't do this reliably.

      MySQL now seems to be living only on it's fast reputation that it had in the past, driven by people who've heard that it's good and it's fast, but don't know the details. By now, other free databases (postgresql [postgresql.org] in particular) have caught up a lot, and should be preferable in most cases if you're starting from scratch.

    • So, based on your evidence, would you like for MySQL to be used to maintain your banking information and that of another 1,000,000 people?

      The two problem spaces are completely different, with completely different requirements in terms of reliability and recoverability.

      In financial situations, 99.999% right isn't good enough. 99.999999% isn't good enough.

      Just to give you a comparison of reliability, on my new test server, I setup postgresql 7.4, and initiated 250 parallel bank transactions, where each c
  • Can a single table hold at least 100GB of data, and still have fast read-write access, say, less than 30ms for both a SELECT with index and INSERT?

    How much time does it take to do a backup of a 100GB database?

    Failover support: when a slave takes over, how long does it take to restore the master and switch back for a 100GB database?

    Are views or foreign keys with constraints supported?

    Does stored procedure increase performance by precompilation?
  • MySql vs. Postgres (Score:4, Interesting)

    by Alien_Phreak ( 525741 ) on Thursday December 25, 2003 @05:14PM (#7809406) Journal
    Hi all,

    I keep hearing about all the great god-like features of Postgres....but what exactly can Postgres do that mysql can't? i'm going towards setting up a central database (MySQL) linux server at work which will be accessible via Ms. Access using an ODBC driver from the clients. (ie. client running Msft Access changes data on a mysql database on a linux server, easy enough to use gui and a strong enough backend)

    So far, i'm not doing anything out of the ordinary. nothing too complicated database wise. What exactly would be the advantage of using Postgres.

    What does it do that mysql can't?
    • I keep hearing about all the great god-like features of Postgres....but what exactly can Postgres do that mysql can't? i'm going towards setting up a central database (MySQL) linux server at work which will be accessible via Ms. Access using an ODBC driver from the clients. (ie. client running Msft Access changes data on a mysql database on a linux server, easy enough to use gui and a strong enough backend)

      Not to put you down, but if you don't understand the differences between the two (or any other d

    • > So far, i'm not doing anything out of the ordinary. nothing too complicated database wise.
      > What exactly would be the advantage of using Postgres.

      How's this - you'll be using a mature database that has a good implementation of almost all standard database functionality - vs one that has only implemented some of it, and has repeatedly claimed that this standard functionality wasn't necessary.

      So, now MySQL is quickly trying to check off all these deficiencies, which include:
      - transactions
      - uni
    • Congrats on being curious enough to look.

      I'll just add to the other comments and say that Postgresql is a moving target, under active development by a very talented team, so while MySQL tries to play catchup, Postgresql moves on ahead as well.

      The things coming in the next year or so are:
      Point in Time Recovery
      Sub transactions
      Very low I/O contention vacuuming.
      Win32 native port
      Multi-master / multi-slave async replication

      In the last year, postgresql has added other key features as well, such as industrial st
    • which will be accessible via Ms. Access using an ODBC driver from the clients.

      Not answering your question here or anything, but you might want to check out Rekall if that Access code is not in place yet.
  • by ngunton ( 460215 ) on Thursday December 25, 2003 @06:03PM (#7809614) Homepage
    I get so tired of reading all these "MySQL sucks" comments from the PostgreSQL crowd every time there is any mention of the two databases. Well, for whatever reason, this time I feel compelled to comment in return.

    First of all, I remember back when I was trying to decide which of the two databases to use for my bicycle touring community website, crazyguyonabike.com [crazyguyonabike.com], and I heard all the same arguments that MySQL is a "toy" that's simply an SQL interface to a flat file system, and how PostgreSQL was a "real" database with actual transactions, subqueries and so on... but then, digging further into PostgreSQL, I found out about the 8k row size limit, and the requirement to halt everything to do a VACUUM occasionally. That really set me back on my heels - 8k? That's really pathetic. Ok, so they've fixed that in the later versions, and the VACUUM also seems to be bit less blocking now, but still - it left me wondering just what else these zealots were conveniently choosing to forget about when recommending PostgreSQL. How about speed? How about all the anecdotal accounts of corrupted databases (again, probably improved somewhat more recently). What other major limitations are they conveniently neglecting to mention these days? I ask, because these people were making exactly the same noises back in the 8k rowsize limit, blocking VACUUM days as they are now.

    Thing is, MySQL works really well right out of the gate for most things that people want to do in real life. Here are a few factoids for you:

    MySQL *does* have real transactions. It has for quite some time now - just use the InnoDB table type. And for anyone who whines about this not being the default table - get a life! Choice is good, and I would say that for 99% of applications out there, you just don't need transactions. Go ahead and crucify me for saying this - I don't care. It works for a lot of people, many companies all over the world use it for heavy duty database work. I've used it for four years now, and it has *never* crashed on me, *never* lost any data. I use RAID and backup regularly too, but MySQL is ROCK SOLID.

    MySQL is getting all these things like subselects and procedures, just with a different priority to PostgreSQL. So what? Again, I have never missed subqueries, and I have some pretty complex queries in my website. Again, go ahead and flame me, I don't care - it works for me, and it works for a LOT of other people too. Which brings me to another thing:

    There is a definite sense of intellectual snobbery and elitism in many of the comments from PostgreSQL fans slamming MySQL. This reminds me of some of the people I used to know back at University - these are people who are so wrapped up in their own little cozy theoretical worlds that anything remotely practical or pragmatic in its approach seems to be extremely threatening. I think this is one of the big reasons for the bile - these people are simply threatened by the fact that MySQL is so popular and so much more used across the world. Could there also be a little tribalism creeping in here? You know, my team vs your team. They just can't seem to understand that BOTH databases work very well and BOTH databases have weaknesses, which BOTH development teams are working very hard to fix and make better. Getting religious about this sort of thing helps nobody. But, I guess, given the fact that Religion is in fact so widespread in the world, this would then also point to there being a somewhat large number of people who are so hung up on their own little certainties and fixed viewpoints that anything else just can't be left to stand. Like the Christian missionaries, they have to have everyone else adhering to THEIR point of view, regardless of the fact that there are, in fact, many "ways" to spiritual enlightenment (or data management). Again: Not everyone needs transactions. Many people just need simplicity and speed, and they get it with MySQL. And you know what, if they want transactions then they can have that too! Th
    • > I get so tired of reading all these "MySQL sucks" comments from the PostgreSQL crowd every time there is any mention of the two databases.
      > Well, for whatever reason, this time I feel compelled to comment in return.

      Point taken: postgresql used to have some performance and availability limitations, mysql still has functional and usability limitations.

      > MySQL *does* have real transactions.
      which are implemented using a third-party product, are limited and aren't seamlessly integrated, and which c
      • Thanks for nicely illustrating my point!

        Nah, more likely it's the disgust that the more experienced developers feel with an obvious charletan that claims that well-proven techniques aren't necessary. Kinda like if ten years ago Yuga had insisted that air-bags, seat belts, and bumpers weren't needed "by most people in most situations". Yeah, right.

        yep, I've occasionally developed trivial databases without [subqueries]. But I've seldom developed a serious database without them.

        Wow, thanks! Another snid
        • > Sorry, but Yes, it IS a real database. And no, I truly don't appreciate the dismissive, elitist attitudes of people like you.

          Dude, don't take criticism of the mysql product so personally. Relational databases have been around a *long* time, and the basic functionality is *well* understood. If mysql ab hadn't taken the equivilent position to declaring OO unnecessary and delivering a new implementation of COBOL '68 - then they wouldn't be the recipient of so much *legitimate* criticism.

          And don't act
    • by jadavis ( 473492 ) on Friday December 26, 2003 @04:48AM (#7811668)
      I have been looking for a long time for a MySQL person to actually say something that bugged them about PostgreSQL, and why they couldn't use it.

      When I started using postgresql, at 6.5.3, it was deficient in many ways. Advocates may have tried to hide these deficiencies at the expense of whoever they were advising. But, I never got any sense that the developers did.

      I remember a post by someone on the mailing list that asked (and I'm paraphrasing here from memory, so I could be off): "Would you run your payroll system on PostgreSQL?" (implying that he bet his paycheck on postgresql) and a primary developer responded "not on 7.0, but on 7.1 [just released at the time], yes."

      I really think that postgresql has moved a long way since that time. It's at 7.4.1 right now, and I I simply haven't heard reports for a long time about any sort of "weirdness". It's a 24/7 system now. Heck, I was running a 7.1.x system for a long time with no problems.

      Now, I get the same feeling about hidden issues with MySQL from the advocates of that system. But I actually check up on my facts, and I've decided that I would prefer not to use a database that thinks Feb 31st is a date.

      Granted, I understand that the features of PostgreSQL have to develop a track record of actually working. Well, all the things you mention were fixed at least a year ago, and yes, they do work.

      I also understand that MySQL works for you. But what I don't understand is why PostgreSQL doesn't work for you. I'm not saying you should switch to postgresql, but I would like to hear of an actual problem someone had using it in the last 12 months (or heck, 24 months) that MySQL solved. What can PostgreSQL possibly do that would attract your attention again?

      From my perspective, MySQL has nothing to attract me away from PostgreSQL. MySQL improvements have been suggested many times, and they're working on them. What improvements do you suggest for PostgreSQL?

    • MySQL, on the other hand, was designed from the start to be fast as hell and reliable, at the expense of things like, uh, transactions and subqueries and foreign keys and procedures and... yes, and a WHOLE BUNCH OF OTHER STUFF WHICH A LOT OF PEOPLE DON'T NEED AND NEVER, NEVER MISS.

      Their loss. If you can do without transaction control & subqueries, good for you. Foreign keys, on the other hand, are really useful: they're basically an effiencent way of ensuring that all the info in your database actual

  • Fuck you! (Score:3, Funny)

    by Lord Bitman ( 95493 ) on Thursday December 25, 2003 @07:22PM (#7809906)
    I don't care what anyone else says! It's MySQL 5.0 and we're running away together! You never understand me! Maybe no one else will ever understand us either, but alpha or not, we're n love!
  • What does it mean 'ISO SQL:1999-style stored procedures'? Java, PL/SQL, SQL/PSM?

    Stored procedures are a mess, with a de facto ill-defined Java standard trend, a de jure SQL/PSM standard supported by IBM DB2 and not much else, and a proprietary, non-portable PL/SQL supported by Oracle and PostgreSQL.

    But anyway I won't consider MySQL when I have PostgreSQL with a much sounder, even if not perfect, approach to fundamentals.
  • ...all my mission critical servers that run MySQL, let the testing commence baybee! ;o)

"Protozoa are small, and bacteria are small, but viruses are smaller than the both put together."

Working...