Hi
Which is generally faster for small web projects - MySQL or Oracle?
Please provide some proof (benchmarks or any other) of your opinion.
Hi
Which is generally faster for small web projects - MySQL or Oracle?
Please provide some proof (benchmarks or any other) of your opinion.
MySQL is free and generally great for small projects. Oracle costs you some bills. That's enough for me. You might also consider Postgre for small web projects. Possibly related: http://stackoverflow.com/questions/1788854/when-to-choose-oracle-over-mysql
In >90% of cases MySQL. Since most simple websites have simple key-value with some very limited relations and no or limited need for transactions.
Oracle really comes to its right with complicated datamodels requiring tuned SQL queries and high transaction counts.
Small web projects are dominated by engineering cost, so I guess you mean installation time. MySQL can be installed faster. And of course both are a bad idea from engineering time pov. A small web project should be able to do without a RDBMS (e.g. Seaside with Sandstone persistence).
In a commercial setting it is a question with little value. There the important thing is to be able to do many projects, and the scalability and interoperability range you want to achieve. That depends on the market you want to be in, the qualifications of the people you work with.
yes probably MySQL. For small projects I think SQLLite is also a good option
Guys, at this moment you're just some guys telling me... nothing. I asked for some proof. What I'm typically is in search for is proof that one or the other is faster on a smaller PHP web project.
What I mean by small is that there is around 10 tables in the database and they will contain around 2000 rows altogether perhaps. The database should rather be fast at selecting than inserting.
For a small project there should be no real difference. I'd suggest that you consider:
etc.
Depending on your needs the answer may be oracle or mysql.