Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×
Databases Programming Software Sun Microsystems IT

MySQL Founder Monty Quits Sun (Or Not) 148

Paul Boutin writes "A reliable source tells Valleywag that MySQL inventor Michael Widenius, better known as Monty, has resigned from Sun. Sun bought Monty's MySQL company in a billion-dollar deal last January. Brian Aker, who forked the Web 2.0-friendly Drizzle SQL database (and former Slashdot engineer!), remains at Sun." Kaj Arnö and Sheeri Cabral share their thoughts.
This discussion has been archived. No new comments can be posted.

MySQL Founder Monty Quits Sun (Or Not)

Comments Filter:
  • by Anonymous Coward on Friday September 05, 2008 @03:28PM (#24892343)

    1. Tell us how great your database is, (ie. postgres, mssql server, oracle etc..)

    2. Tell us how shitty mysql is in your eyes.

    3. Tell us how mysql "sold out"

    So everything under this thread can be modded as "redundant"

    Thank You.

    • by DanWS6 ( 1248650 ) on Friday September 05, 2008 @03:40PM (#24892531)
      4. For extra credit tie into your rant how terrible you believe PHP is and how xyz is so much better.
      • Re: (Score:3, Insightful)

        by LWATCDR ( 28044 )

        Now now. PHP is a pain but a dang useful pain. Just like MySQL.

        PHP and MySQL are both good but not great tools. What makes them useful is all the stuff that works with them.
        I would drop MySQL in a second for Postgres except that too many CMS and other packages use it. The same is true of PHP.

        There happy now?

        • Re: (Score:3, Funny)

          by DanWS6 ( 1248650 )
          No.
        • PHP and MySQL are both good but not great tools. What makes them useful is all the stuff that works with them. I would drop MySQL in a second for Postgres except that too many CMS and other packages use it. The same is true of PHP.

          And javascript. It's pretty flexible, but I think most people would prefer something saner, like smalltalk, java, c#, etc.
        • by unity100 ( 970058 )
          so many stuff are using them, that means they ARE useful ffs.
      • Re: (Score:3, Funny)

        by discogravy ( 455376 )
        lol ur still using xyz?
    • by neowolf ( 173735 )

      1. Tell us how great your database is, (ie. postgres, mssql server, oracle etc..)

      2. Tell us how shitty mysql is in your eyes.

      3. Tell us how mysql "sold out"

      So everything under this thread can be modded as "redundant"

      Thank You.

      LOL! If I had mod-points, I'd be using them here! :)

    • Re: (Score:1, Redundant)

      by man_of_mr_e ( 217855 )

      My database is great, mysql is shitty in my eyes, and mysql has sold out.

      Is there a prize?

    • by Kjella ( 173770 ) on Friday September 05, 2008 @04:24PM (#24893265) Homepage

      Tell us how great your database is, (ie. postgres, mssql server, oracle etc..)

      I'd rather tell why I think databases in general suck: Lack of standardization. It's one thing if you could do like with browsers and make compatibility chart with ANSI SQL, but it's choking full of proprietary extensions. Hopefully they'll sooner or later get around to supporting SQL:2003 which takes care of the worst ones. Here's one example, creating an unique ID:

      The standard specifies a column attribute of:
      GENERATED ... AS IDENTITY (non-core feature ID T174+T175).

      PostgreSQL doesn't support the standard's IDENTITY attribute.
      DB2: Follows standard, albeit with some restrictions on how identity columns may (not) be added to an existing table, etc.
      MSSQL offers IDENTITY as a column property, but with a different syntax (not as intuitive and with less options) than the standard's specification.
      MySQL doesn't support the standard's IDENTITY attribute.
      Oracle doesn't support the standard's IDENTITY attribute.

      And they bloody well all have a way of doing it, it's just five different ways. That's what I hate about databases, you don't pick one for RDBMS features but because you need to pick a language. It's like picking a computer because of the compiler. They seriously need to get the standards *ahead* of the implementations, like for example browsers and HTML/CSS standards. Or at least get a reasonable subset standard so you can write a non-trivial database neutral application.

      • by Rich0 ( 548339 ) on Friday September 05, 2008 @09:52PM (#24896937) Homepage

        Couldn't agree more. My other big pet peeve is applications that are database-specific (which obviously is related to the fact that app designers don't have much choice in the matter). I don't want to install my own MSSQL server for the sake of the one application that can't run on my company's enterprise scale server farm running some other RDBMS. I don't want to pick a different application that doesn't meet my user's needs simply because it handles the other RDBMS.

        Oh, and if we actually had some standards perhaps there would also be a chance that every time Oracle releaes a new software releaes it wouldn't break half the applications I manage...

        • Probably the main reason why apps are database-specific is precisely because databases tend to have very different SQL syntax when it comes to reasonably advanced queries. Also, the difference between snapshot semantics of transactions in MVCC implementations (Oracle, Postgres, Firebird), and lock-based ones, can lead to some very annoying bugs down the line eventually.
          • by Rich0 ( 548339 )

            Yup. Hence the reason I posted that in a discussion about the need to standardize SQL... :)

      • Connection connection;
        String sql = "{call whatIwannaDo (?) }";
        Statement stmt = connection.prepareCall(sql);
        stmt.setString(1,id);

        Works whether its on MySQL, Oracle, or MSSQL , assuming you have the procedure in place on all three.

        Granted, I agree that all servers support the standard. There are standard method workarounds in almost all languages to help make your app DB neutral.

      • They seriously need to get the standards *ahead* of the implementations, like for example browsers and HTML/CSS standards

        *cough*IE*cough*

      • by Splab ( 574204 )

        Well since the siblings seems to agree with you, I'm going to disagree.

        Yes standards are nice, in theory you can pick any single database you want for your project.

        However, in the real world different databases excel at different things. For instance SolidDB trades features for speed - no other database performs like their in memory option (while staying ACID); MySQL is great for being a dumb advanced storage engine for stuff you want to save, but aren't critical, they gain speed by relaxing the constraints

      • Using sequences (CREATE SEQUENCE and NEXT VALUE FOR) is considered preferrable to IDENTITY, anyway, but support for ANSI SQL sequences is also rare. IIRC, if you use the very basic syntax, you can get the same DDL/DML running on Oracle, Postgres and Firebird, and that's about it.
      • AFAICT the SQL "standards" are simply the superset of everything Oracle and DB2 happened to be doing the year the standard was finalized. I tend to use them as examples of how not do make standards.
  • Shoot (Score:5, Insightful)

    by XanC ( 644172 ) on Friday September 05, 2008 @03:28PM (#24892351)

    If I'd just made a billion-dollar deal for my company, I'd sure look long and hard at not working anymore.

    • by Sentry21 ( 8183 )

      Amen to that. MySQL has a huge user and developer community. After working that hard to get it to where it is from where it was, I'd seriously consider leaving it in someone else's capable hands and moving on to bigger and better things (like Fiji).

    • Some people keep working after their first billion. Like Bill Gates who kept running Microsoft for several years after he was a billionaire.
      But guys like Bill certainly don't need to keep working, so I guess they enjoy steering a big company.

    • If I'd just made a billion-dollar deal for my company, I'd sure look long and hard

      If you'd just made a billion dollars, you would look long and hard to most women out there!... money... the best aphrodisiac! Just like The Professor [blowmeuptom.com] says. w00t! for 101 [tenetsofleykis.com]

  • by assemblerex ( 1275164 ) on Friday September 05, 2008 @03:34PM (#24892445)
    The sun destroys everything it touches. Eventually it will implode into a black hole and devour what little shareholder value is left.
    • by east coast ( 590680 ) on Friday September 05, 2008 @03:44PM (#24892623)
      Actually, it's going to turn into a white dwarf in most likeliness.

      But I understand where you're coming from.
      • by Kjella ( 173770 )

        Actually, it's going to turn into a white dwarf in most likeliness. But I understand where you're coming from.

        The cult of LHC doomsday prophets?

    • by db32 ( 862117 )
      Actually, basic astronomy says that our sun is nowhere near massive enough to collapse into a black hole. Even then, in a couple billion years the sun will have expanded and engulfed earth long before the whole collapse thing would happen.

      In fact, with the exception of a few (H, and He most notably) the normal life cycle of the sun can create all of the elements up to and including iron!
      • Re: (Score:1, Funny)

        Aw man... I'm dreading the day that the sun expands and engulfs us.

        • by db32 ( 862117 )
          Honestly, it is this style of cosmic horror that scares me more than most of what goes on here on earth. Not that I think this instance specifically is going to be a problem for us (we will either have moved or killed ourselves off long before). But there is a WIDE array of cosmic badness that could happen to us that we can do absolutely nothing about. Hell, there is an extremely large number of things that we wouldn't even see coming.

          My personal favorite is when people learn of the whole magnetic fiel
          • by amorsen ( 7485 )

            Previous flips of the magnetic field aren't correlated with mass extinctions. I find that quite surprising myseld, but it is at least somewhat reassuring.

      • Trying to find the double entendres in this is hurting my brain.
  • by KernelMuncher ( 989766 ) on Friday September 05, 2008 @03:35PM (#24892461)
    I am surprised Sun didn't tie Monty to the company with golden handcuffs (deferred compensation). His departure could have a negative effect on customer loyalty. And it sure does look bad for the founder to be leaving so quickly.
    • Re: (Score:1, Interesting)

      by Anonymous Coward

      I think he is going to fork the GPL version and start from there. That way he has the money and the control over MySQL.

      Smart cookie, that Monty!

    • by Jherek Carnelian ( 831679 ) on Friday September 05, 2008 @04:15PM (#24893101)

      They probably had a 9-month contract to keep him around and now the 9 months are up.
      It is extremely common for the previous owner/ceo to bail out in a year or so after their company is acquired.

      • Re: (Score:3, Interesting)

        by swordgeek ( 112599 )

        Unless of course, you're a talentless, brainless, lying, two-faced, pony-tailed bastard with no future. Then you stay on until you get named CEO.

        Oops, was that my outside voice again?

    • by lgw ( 121541 )

      There's always a time limit on those agreements. Presumably the time limit is up.

  • by pushing-robot ( 1037830 ) on Friday September 05, 2008 @03:35PM (#24892463)

    ...he's leaving to work on Python.

    I mean, the PSF needs good, experienced developers, and, um, that's all.

  • by peterdaly ( 123554 ) * <{petedaly} {at} {ix.netcom.com}> on Friday September 05, 2008 @03:45PM (#24892655)

    With the founder leaving, the name MySQL no longer fits.

    Next slashdot poll...

    MySQL's new name should be:
    1. TheirSQL
    2. SunSQL
    3. JavaSQL
    4. CowboynealSQL

    I vote for #4.

  • by TheModelEskimo ( 968202 ) on Friday September 05, 2008 @03:51PM (#24892733)
    Monty was last seen boarding a ferry to France.
  • Why is this a surprise to anyone? It was expected from day one of the announcement. Atleast from my perspective.
  • by eatfastnoodle ( 1303031 ) on Friday September 05, 2008 @03:51PM (#24892743)
    isn't build a company, sell it to big guys and go into early retirement the ultimate dream of every nerd?
    • by eln ( 21727 ) on Friday September 05, 2008 @03:56PM (#24892807)

      Well no, the ultimate dream of every nerd is to have a threesome with Jessica Alba and Natalie Portman (petrified!) with hot grits down their pants, but I'm sure the retiring early thing is a close second.

      • Re: (Score:2, Informative)

        that can and will happen after I have 1 billion in bank and tons of time to kill.
      • I'm pretty sure if I had a billion dollars, I could arrange something like that, and even throw Scarlet Johansen in for an extra couple of million. Damn I need to be a billionaire.
      • Well no, the ultimate dream of every nerd is to have a threesome with Jessica Alba and Natalie Portman (petrified!) with hot grits down their pants, but I'm sure the retiring early thing is a close second.

        When you retire with a billion dollars you can most certainly fulfill the threesome dream.

    • Re: (Score:3, Funny)

      by mr_mischief ( 456295 )

      You mean besides hiring the guys who beat him up in high school to mow his 16-acre lawn?

    • Re: (Score:1, Insightful)

      by Anonymous Coward

      Actually, no, if I wanted to identify a nerd then one of the first question I'd ask them is, "If you built a company, would you want to be able to sell it to the big guys so you could go into early retirement?" If they say "yes", they're absolutely not nerds.

      This annoys me because there are so many people who just want money and who pretend to be in with the whole nerd idealism thing, especially those in the Free software / OSS movement. They might be talented coders, but their care is to advance their name

      • True nerds don't build billion-dollar companies.

        True nerds learn embedded system languages so they can program their train set at home.

        And sometimes, sometimes, help the rest of society with some of their pesky data problems.

        As long as it doesn't cut into model train time much.

        Substitute train set for 1/72 or 1/35 plastic-soldier painting and massive battles reenactments with a dog-eared battle rule book and battle tournament stats programs written in exotic languages.

        • by AlecC ( 512609 ) <aleccawley@gmail.com> on Friday September 05, 2008 @06:41PM (#24895491)

          Having slightly met Monty W, he is a true nerd. He didn't build a billion dollar company, he built a database that did what he thought databases should do. Many people do not exactly agree with him (see arguments on /. ad nauseam). But other people built a billion dollar company on that database. It deos not surprise me at all that he has taken his share of that billion dollars and walked off into the sunset. Maybe it is to Fiji, but even if it is, I would hazard a guess he will still be playing with databases on the beach.

        • sounds like Woz to a tee.

      • Re: (Score:3, Insightful)

        by jadavis ( 473492 )

        I'm not sure I agree with your version of idealism. Sure, idealistic people never want to retire.

        The part I take exception to is that selling a business and moving on is somehow not idealistic. Selling out is not bad by itself, it's only bad if you hurt people in the process (e.g., if it's bought out just to destroy the company).

        The usual case is that some idealistic person creates something, it makes people happy, they don't care enough about business details to stick around, so they sell it to work on som

    • Re: (Score:3, Funny)

      by AioKits ( 1235070 )
      I'm still researching to see if my ultimate dream is even legal in this state.
    • You left out: Marry hot supermodel.
  • interesting timing (Score:5, Interesting)

    by toby ( 759 ) * on Friday September 05, 2008 @03:59PM (#24892843) Homepage Journal

    Monty's been working on the interesting "Maria" transactional engine [mysql.com] (evolved from, and compatible with MyISAM), which is slated to become MySQL's future default engine.

    Since they recently made a feature-complete ("no known bugs"!) release [blogspot.com] of Maria, I'm tempted to think that was his personal deadline to quit.

    Josh Berkus [toolbox.com] (core PostgreSQL developer) also recently quit Sun. [toolbox.com]

    I like Sun. I'm sad that they have lost these two brilliant database engineers, and I hope they go on and kick Oracle's (and that other company's) butt anyway.

    • Re: (Score:2, Funny)

      by Sun Chi ( 680938 )

      You can use "that other company's" name. I mean, we are talking about Microsoft here not Lord Voldemort, right?

    • Re: (Score:3, Informative)

      by Anonymous Coward

      Actually, Maria isn't transactional. It was supposed to be, but it did't work out that way. Punting on transactions, they fell back to crash recoverable MyISAM. The next release is supposed to handle concurrent inserts. Other concurrent operations may follow someday. In the meantime, it doesn't support transaction backout, verb backout, two phase commit, transaction isolation, or any of the hard stuff.

      MySQL went with InnoDB because MyISAM wasn't transactional. MySQL went with Falcon because Maria didn

      • It's worth mentioning that Jim Starkey [wikipedia.org] (inventor of MVCC, etc) also quit recently. [firebirdnews.org] (He joined MySQL in 2006 [firebirdnews.org] to work on Falcon.)

        So Sun has lost more database genius in 2008 than most companies ever had. :(

        • by NimbusDB ( 1358605 ) on Friday September 05, 2008 @06:24PM (#24895289)
          Yes and no. I'm not longer a Sun employee, but still involved with Falcon with both a consulting gig and a separate code collaboration agreement. My primary project is NimbusDB, a database designed from the ground up for the cloud platform. But I'm still involved in Falcon code and meet with the rest of the Falcon team regularly. The really big difference is that I don't have to participate in interminable conference calls. That in itself makes a job worth quiting. [The comment above on Maria is also from me. Slashdot was not at all happy that my MySQL email address had disappeared into the ether.]
          • If I had eyes sharp enough I'd have noticed your initials on the post, instead of telling you something you already knew. Thanks for the clarification, and it's good to know that you're still involved in Falcon. :)

          • by MikeO ( 951 )

            Glad to see that (from the wikipedia link above) I'm not the oldest programmer reading slashdot, and very positive to know that the generation preceding me is still having an impact.

          • but still involved with Falcon with both a consulting gig and a separate code collaboration agreement

            We are currently using MySQL/InnoDB and are converting the code to move to PostgresSQL because our tests show it faster in our highly transactional environment. We'd love to stay with MySQL but Falcon is too far out and too uncertain about it's capabilities.

            What are the expectations for Falcon in a non-Web transactional environment?

      • by Rich0 ( 548339 )

        I'll vote for the "doesn't think it is important" option. That was the one thing that always annoyed me about MySQL. Rather than apologize for taking a while to support transactions the party line seemed to be that MySQL was better because it could trash your data 10X faster than the competition.

        Sure, I like having the option to speed things up by turning off transaction support. That is a wonderful feature to have. It is a horrible feature to require users to accept.

        What I'm waiting for is transactiona

    • Isn't Falcon was supposed to become the default engine?

  • It looks like BS, guys. According to the company LDAP DB this person is still here :-) Sounds like a typical case of FUD, which works as you can see from the comments...
    • Re: (Score:3, Funny)

      by russotto ( 537200 )

      It looks like BS, guys. According to the company LDAP DB this person is still here :-) Sounds like a typical case of FUD, which works as you can see from the comments..

      Did you refresh your cache?

    • by Ilgaz ( 86384 )

      You told him to convert it to Java! Confess!

  • Inventor? (Score:2, Interesting)

    by konohitowa ( 220547 )

    Since when does someone who codes up a partial SQL implementation get promoted to inventor status? It reminds me of a guy at work (one of those self-promoter types) telling me how he and his team "invented an XML".

    Perhaps Linux inventor Linus Torvalds and Melissa inventor David Smith could chime in with their thoughts on this.

    • Re: (Score:3, Interesting)

      by RPoet ( 20693 )

      How is Linus any more of an inventor? He coded an operating system. Just because it's more work doesn't make it more of an invention. The "inventor" title should be reserved for people who come up with novel solutions of a new category.

      • How is Linus any more of an inventor? He coded an operating system. Just because it's more work doesn't make it more of an invention. The "inventor" title should be reserved for people who come up with novel solutions of a new category.

        Actually, Linux coded an Operating System kernel.

  • by nathanh ( 1214 ) on Saturday September 06, 2008 @10:24AM (#24900401) Homepage
    DELETE FROM sun WHERE name="Monty"

Get hold of portable property. -- Charles Dickens, "Great Expectations"

Working...