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."
And I'm not sure free Oracle better than mysql for Lamp (laop ?) project.
Oracle requires lots of attention to work. (O course if nobody touces it will work for ages) Any misuse may halt entire db.
Anyhow, I'm not sure that kind of movements stops even slows MySql and PostgreSQL.
And this kind of movements shows us FEAR...
Even DB giant Oracle was fear from MySql and Posgre SQL
Well done boys well done...
[My english is better than most other people's Turkish, so please point out mistakes politely. Thank you.]
Just wanted to share! They really need to work on the developer experience. I'm no MS apologist, but SQL Server is an absolute dream by comparison - and there'e a free version too.
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..
Oracle is only free for non-production use if you are in ISV.
If you do in house programming, you are still suppose to buy licenses for Development.
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.
In my opinion Oracle is one of the least trustworthy software vendors and I sure as hell wouldn't bank my company on them, regardless of the price they ask.
ich bin der musikant
mit taschenrechner in der hand
kraftwerk
MS Access is "supposed" to be the interface to it. Access is actually a very nice interface and handles all of the SQL Server (2000) features extremely well, from simple views to complex stored procedures and macros.
.NET framework and runtime has been deeply integrated with it, and as such, all .NET languages can be used to create first class database objects like stored procedures, and even custom data types.
I haven't yet had a chance to play around with SQL Server 2005, but I understand that the entire
LL
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
What are you talking about? Oracle 10g Linux is 638MB in size. And I have downloaded and installed it many many times on five different platforms.
Like the title of my reply already said ... you can almost download any tool of Oracle for free. (except the Apps Suite)
Only for development purposes like stated on http://otn.oracle.com./
You can download the _entire_ Oracle 10g2 Production Relase DB, the developer suite, and so on & ....
It is only a problemn when you use it in your company.
My 0.02$
Regards
"... I always come up against limitations that I can't live with..."
May I ask, what features do you need that aren't in SQLite or PostgreSQL?
Another question: I wonder if the free version of Oracle will work with Compiere ERP + CRM, at least for testing?
Here is a Comparison of Oracle, MySQL and PostgreSQL DBMS.
ZDNet article: Oracle to offer free database.
I was not able to find the list of limitations on the Oracle web site. Anyone?
So I guess Google isn't big enough to need oracle yet? They're still using MySql for everything...
This just in! 3 out of 4 people make up 75% of the population.
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.
> Actually, I'm interested, to tell the truth I haven't had the misfortune of dealing with badly designed databases and I would like to know what it takes for people to make them unable to
> provide answers while the information is there.
here's a list of major screw-ups:
1. objects are stored as binaries instead of separate columns
2. data is organized in massive and simple key-value pair columns rather than as separate and dedicated columsn
3. data is kept as strings that must be parsed with application code instead of with sql
lesser screw-ups would include:
4. overly normalized model
5. missing data
6. lack of versioning or history
7. data versioning inconsistently applied
8. data quality inconsistent due to all validation being performed at application layer
9. etc
Many of these issues don't prevent users from getting their data back out the application that wrote it. The problem is that when they have a simple question like, well, how many transactions per day have we been getting for the past year, and is the rate increasing? That there's no way to answer that question through SQL, but more expensive application logic has to be built. Then you next discover that the application that may have performed fine for simple transactions *completely dies* when you try to have it scan a year's worth of data.
The root cause of all this is that many people are still building applications like it was 1985 - and just being able to CRUD a few objects is good enough. Well, it isn't. People generally expect to be able to get insights about a business process in addition to simply creating operational transactions within it. And if you don't know that up front, and then design the database in accordance with the latest fads in J2EE, etc then you *will* suffer once that application starts getting used.