MySQL vs DB2 vs Oracle

Started by ak47, 05-19-2010, 05:27:16

Previous topic - Next topic

ak47Topic starter

Which database is your favourite, I was a big fan of IBM's DB2 platform but more and more am starting to love good old MySQL. Works great for most websites but wouldn't trust it with heavy duty transactional stuff!

What's everyone else think ? :P
  •  




coolrays

Yes. PostgreSQL should be considered when researching both open source and commercial database servers.
  •  

ryosuzuki

I used oracle long time ago with a java application, great transactional functionality. However for simple webapps, I love the simplicity of MySQL. Kicks ass man!

dark404

Quote from: ak47 on 05-19-2010, 05:27:16
Which database is your favourite, I was a big fan of IBM's DB2 platform but more and more am starting to love good old MySQL. Works great for most websites but wouldn't trust it with heavy duty transactional stuff!

What's everyone else think ? :P
Choice is yours but I like My SQL because, MySQL tops the list of robust transactional database engines available on the market. With features such as complete atomic, consistent, isolated, durable transaction support; multi-version transaction support; and unrestricted row-level locking, it is the go-to solution for full data integrity.


dark404

I used oracle long time ago with a java application, great transactional functionality. However for simple webapps, I love the simplicity of MySQL. Kicks ass man!

f1dark

Oracle is an object relational database management system, which allows objects to be stored in tables, in a manner similar to numbers and words being stored in an RDBMS system.

The only interface available between end users and an RDBMS is Structured Query Language (SQL). All other applications and tools that users utilize to interact with the RDBMS act as translators/interpreters. These tools generate SQL commands based on a user's request and pass the generated SQL commands on to the RDBMS.