Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which is faster for small web projects - MySQL or Oracle? [closed]

Which is generally faster for small web projects - MySQL or Oracle?

Please provide some proof (benchmarks or any other) of your opinion.

like image 805
Dreshna Avatar asked May 31 '10 07:05

Dreshna


1 Answers

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.

like image 169
Peter Tillemans Avatar answered Sep 30 '22 05:09

Peter Tillemans