Slashdot Mirror


Oracle To Offer A Free Database

An anonymous reader writes "ZDNet News reports that Oracle is likely to announce a free version of its Oracle 10g Database. Oracle Database 10g Express Edition will be free for development and production use, and could even be distributed with other products. What does this mean for the future of MySQL and PostgreSQL?" From the article: "By introducing a free entry-level product, Oracle intends to get more developers and students familiar with its namesake database, Mendelsohn said. Those customers, Oracle hopes, will eventually upgrade to a higher-end version."

11 of 370 comments (clear)

  1. what a wimpy database by defMan · · Score: 5, Informative
    Database XE is free for runtime usage with the following limitations:
    • Supports up to 4GB of user data (in addition to Oracle system data)
    • Single instance only of Oracle Database XE on any server
    • Only uses and executes on one processor in any server
    • Can use up to 1GB RAM
    1. Re:what a wimpy database by Professor_UNIX · · Score: 5, Informative

      This seems like it's aimed at Microsoft's "free" MSDE rather than open source databases like Postgres or MySQL. The specs are on par with MSDE.

    2. Re:what a wimpy database by smittyoneeach · · Score: 4, Informative

      The thing about PostGreSQL that trumps the competition, IMHO, is that you can build in support for tools such as Python on the DB server.

      PL/pgSQL bears a resemblance to PL/SQL, and both languages are servicable enough. Oracle cooks in its own JVM. While Java is an undeniably powerful tool, one feels relatively enslaved to the JVM, compared to the bliss of simple, clear Python code.

      --
      Get thee glass eyes, and, like a scurvy politician, seem to see things thou dost not.--King Lear
    3. Re:what a wimpy database by Goo.cc · · Score: 4, Informative

      I believe that these limitations mirrors Microsoft's SQL Server 2005 Express Edition, which is where they probably got them from.

    4. Re:what a wimpy database by LLuthor · · Score: 4, Informative

      PostgreSQL also can embed a JVM for writing stored procudures and user functions and aggregate functions, but its not very well supported (yet). PG does have quite a few companies behind it so I doubt it will stay that way for long.

      PG probably has the best language support of all DBs. Is there any major language that doesn't have a PG interface in 8.1?

      --
      LL
    5. Re:what a wimpy database by Dan_Bercell · · Score: 5, Informative

      MS has always offered a free database, MSDE

  2. Re:Move along, move along ... by popeyethesailor · · Score: 5, Informative

    Well, Oracle has always been freely available for non-production use.. They even mail out their entire range of software(DB, App server,dev tools etc) free of cost.

    I once received 10g for linux, and the box had every latest release of Oracle software for Linux. They're quite developer-friendly; just as MS is. For production use however..

  3. Still has restrictions by waif69 · · Score: 5, Informative

    If you look at the EULA you will see that this has a time restriction. "...provided to you by Oracle solely for evaluation purposes until January 31, 2006."

    Obviously this is just a ploy to get developers to write apps on Oracle then, when the application has gotten fat, they will have to pay the fees for a version of Oracle that can support the app or rewrite the whole thing.

    I think that only good reason to obtain 10g is to learn Oracle. If I was working at a company that was moving to Oracle, or at least talking about it, I would DL this to learn it for improved job opportunities.

    Just my $.02.

  4. Re:Oracle Licensing by mzito · · Score: 4, Informative

    Oracle is licensed by the processor or by "named user", not by simultaneous connections. For standard edition, its $15k per processor, or $300 per database user (plus a minimum of 5 users). For enterprise edition its $40k per processor or $800 per named user, with a minimum of 25 named users per processor in the system. This is before you add any of the expensive options like RAC, Partioning, etc. that can add $20k each to the price.

    There's also standard edition one, which is cheaper than either and supports some of the advanced features of both. It's designed to compete with some of the SQL server shops that have HA requirements but aren't willing to pay for oracle enterprise edition.

    Of course, all of these prices are list, and for good negotiators, discounts upwards of 50% off list are not uncommon.

    Thanks,
    Matt

    --
    me@mzi.to
  5. Re:What features do you need? by Jaseoldboss · · Score: 3, Informative
    It's in the Data Sheet (pdf warning).

    http://www.oracle.com/technology/products/database /xe/pdf/dbxe_datasheet.pdf

    • Available on 32-bit Linux and Windows
    • Installs using native installers
    • English (single byte character set) and International (Unicode) versions available with support for 10 major languages
    • Supports up to 4GB of user data
    • Utilizes a single CPU on multi-processor or multi-core machines
    • Can use up to 1GB RAM (single instance only)
    • Fully upgradeable to other Oracle Database 10g editions
    • Oracle Text for efficient text-based searches
  6. PHP and Oracle by sinkemlow · · Score: 4, Informative

    Exactly. I'm an amature PHP coder, which means I cut my teeth on PHP and MySQL. Last year, however, I was forced into a position where I needed to working with an Oracle database. I spent a couple of hours reading up on OCI8 and after a quick recompile of PHP, I was working with the Oracle database through PHP.

    After getting the basic framework of the PHP application together, my reaction was, "Wow, so this is what they mean when they say *real* database." I had very little difficulties working with the new database, and very quickly began to appreciate the extra features Oracle had to offer. After about a week of working with Oracle, I found it quite hard to fall back into the old PHP+MySQL routine (although the mysqli extension has made this easier).

    So I would say the average PHP light coder should have no problems transitioning to an Oracle database. I sure didn't.