Slashdot Mirror


Oracle Acquires Innobase

A short time ago, Oracle announced its acquisition of Innobase, the Finnish company that makes the GPL'd InnoDB table storage engine. Among MySQL users, the separately-written InnoDB is almost as popular as the native MyISAM engine, and is considered to be more advanced for most purposes. Slashdot has, except for search, run entirely on InnoDB for the past year or two so we're as concerned about this as anybody. Brian Aker, former Slashdot coder and current Director of Architecture for MySQL AB, comments: "InnoDB is GPL, so once again the beauty of the open source market is at play: there is no lock in, and we can continue to develop Innodb as we see fit. The code is out there and we plan on continuing to support it. The largest database vendor in the world just confirmed that the market for open source databases exists."

9 of 165 comments (clear)

  1. DBMS market going open source? by martenmickos · · Score: 3, Informative


    Is this yet another sign that the DBMS vendors are going open source? This reaffirms our thinking of where open source is going. Great to see Oracle legitimise the open source database space as they did with Linux.
     
    Marten Mickos, MySQL AB

  2. Re:haha! by Z00L00K · · Score: 3, Informative
    The difference between InnoDB and MyISAM is not that InnoDB is better, they are both good, but have different strategies. MyISAm isn't a fully transactional solution, which may be bad, but the advantage is that MyISAM is very fast, which is the key issue in some cases.

    MySQL is also supporting several other databases as backend, all with different advantages and disadvantages.

    --
    If builders built buildings the way programmers wrote programs, then the first woodpecker would destroy civilization.
  3. Re:Largest DB Vendor in the world by leoxx · · Score: 2, Informative

    No, you will likely be moderated down because you are extremely wrong. For those too lazy to click, IBM is #1 with 34% marketshare, Oracle is second at about 33% and Microsoft is a distant third at 20%.

  4. Re:Largest DB Vendor in the world by Doctor+Memory · · Score: 2, Informative

    Ummm.....cites? According to this, IBM is the market leader with 36%, Oracle follows closely with 32.6%, while MS isn't even close with 18.7%. Or is this "ships more units" as in "ships it with every copy of Windows Server", whether it gets used or not?

    --
    Just junk food for thought...
  5. Re:oy vey by pudge · · Score: 4, Informative

    Slashcode has seen near zero feature additions

    Huh. Just in the last month alone, we've seen the addition of support for CSS and Atom, and the beginnings of a brand-new replacement for formkeys (called reskeys). And that's just September. So, um ... no.

    is widely known to have some of the worst perl code ever written

    Only among people who don't know perl, or Slash.

    is grossly underdocumented...

    True enough.

    But the last thing being true does not remedy the fatal flaws in the other two assertions, which prove you to be quite ignorant about the subject.

  6. Re:A warning to the KDE project? by marcelC · · Score: 2, Informative

    I'm not quite sure if the KDE community can maintain the same development pace of QT as trolltech does, but they do have some contingency plans for the QT codebase. see the KDE Free QT Foundation.

  7. Re:A warning to the KDE project? by adtifyj · · Score: 5, Informative

    The KDE project and Trolltech have carefully protected the future of all software developed on top of the Free QT license.

    In the event of a buyout, QT will be re-licensed under a BSD license.

    This agreement was negotiated very soon after Trolltech was formed.

  8. Re:Purchase good for InnoDB by VikingDBA · · Score: 2, Informative

    With support well into the next decade, I would say no, it doesn't count as squashing them out.

    from http://www.oracle.com/support/premier/lifetime-sup port-policy.html

    "Oracle's Lifetime Support Policy further extends support for PeopleSoft and JD Edwards applications as well. For currently supported PeopleSoft and JD Edwards releases, we are offering Premier support for five years from their general availability date. This is an extension of an additional year over what we had previously announced. We will still continue to deliver tax, legal, and regulatory updates for six-years for the PeopleSoft Enterprise and JD Edwards EnterpriseOne applications. For JD Edwards EnterpriseOne Xe and 8.0 customers, Premier support is now available through 2013. And for PeopleSoft Enterprise 8.8 customers, we are offering an Extended support option through 2011, as well as an upgrade from PeopleSoft Enterprise 8.8 to Project Fusion."

  9. Re:Time for PostgreSQL by Dom2 · · Score: 3, Informative
    To say this shows a lack of real world database experience. Whilst it's simple to change the connection to point at a different database using DBI, once you're actually connected the SQL that you have to use varies in many subtle and incompatible ways.

    Probably the first one that everybody comes across is the difference in the integer primary key. In MySQL, it's auto_increment, in PostgreSQL it's a serial datatype with a backing sequence. If you want to know the primary key value after creating a new row, it's accessed in different ways. And this is just the tip of the iceberg.

    Thankfully, because they're all based on a common standard language (SQL), it's possible. It's just still a lot of very hard work. But it's not impossible.

    If it was easy, you'd see many, many more open source projects supporting something other than MySQL (which bugs me as PostgreSQL user :-)

    -Dom