History of DatabaseComparison
Version 12
DatabaseComparison
Created by: Peter Moore, Last modification: 22 May 2004 (00:23 UTC) by Peter Moore
This is a little soap box I have about databases. I am often asked about databases, and how they compare. I will illustrate with pictures three current favorites:
What this illustrates is that database selection depends on your needs. TikiPro DatabaseSupport many databases via the ADODBSupport database abstraction layer. This allows you to choose a database that fits your site's requirements - be it performance, financial, stability, or any combination there of.
MySQLSupport is probably the most popular database when counting by unique installations. This little database is a highly functional, entry-level database. It is completely open-source, and has excellent support on almost all operating systems (particularly good Windows support). However, once your data needs become more serious, it quickly falls short due to lack of native ACID compliance (true transactions), triggers, foreign keys, stored procedures, and more. Its speed is often touted as being a benefit, however, given its lack of features (particularly transactions), it is often an unfair comparison.
(:exclaim:) If you are using UNIX, i strongly encourage using PostgreSQL over MySQL. I have personally had the "myisam" tables corrupt on me several times. Uh... if you can't trust your database with your data...
PostgreSQLSupport is another open-source database that is very stable and supports many more data-critical features to insure data integrity. These include all the features lacking in MySQL as mentioned above. There are also several replication solutions that offer great redundancy solutions. While UNIX support is excellent, Windows support is lacking, however it will indeed run with use of the Cygwin POSIX compatibility package. News! There is significant work being done on a native windows port. For enterprise class features and open-source, this is as good as it gets.
(:arrow:) If you are using any flavor of unix, I strongly recommend PostgreSQL. I have used it for many years and it has been awesome, and extremely reliable. It is just as easy to use as MySQL and offers many, many more features. Windows users should consult with others to see how good of an option it is, I proudly don't do Windows.
OracleSupport is considered generally considered king of the RDBMS hilll. It offers every feature one could possibly dream of when needing both data integrity assurances, and performance. It often comes at a price you can only dream about too - typcially tens of thousands of dollars.
(:idea:) You can actually download Oracle for FREE from the Oracle OTN website for personal use, and I highly recommend everyone does. Oracle's thinking appears to be "If you need it, you can afford it, and you'll pay for it. If you don't, or can't, then you can get addicted to it until you can".
See the database links in our Directory for more information.
To be continued as time permits...
MySQL | PostgreSQL | Oracle |
Cute and easy to drive you'll get going in a hurry, however it's not the safest place to be if something goes terribly, terribly wrong | It offers rugged durability while being very easy to drive | When you have to kick ass and take names there's only one answer, however just getting the things moving takes a lot of training and education |
What this illustrates is that database selection depends on your needs. TikiPro DatabaseSupport many databases via the ADODBSupport database abstraction layer. This allows you to choose a database that fits your site's requirements - be it performance, financial, stability, or any combination there of.
MySQL
MySQLSupport is probably the most popular database when counting by unique installations. This little database is a highly functional, entry-level database. It is completely open-source, and has excellent support on almost all operating systems (particularly good Windows support). However, once your data needs become more serious, it quickly falls short due to lack of native ACID compliance (true transactions), triggers, foreign keys, stored procedures, and more. Its speed is often touted as being a benefit, however, given its lack of features (particularly transactions), it is often an unfair comparison.
(:exclaim:) If you are using UNIX, i strongly encourage using PostgreSQL over MySQL. I have personally had the "myisam" tables corrupt on me several times. Uh... if you can't trust your database with your data...
PostgreSQL
PostgreSQLSupport is another open-source database that is very stable and supports many more data-critical features to insure data integrity. These include all the features lacking in MySQL as mentioned above. There are also several replication solutions that offer great redundancy solutions. While UNIX support is excellent, Windows support is lacking, however it will indeed run with use of the Cygwin POSIX compatibility package. News! There is significant work being done on a native windows port. For enterprise class features and open-source, this is as good as it gets.
(:arrow:) If you are using any flavor of unix, I strongly recommend PostgreSQL. I have used it for many years and it has been awesome, and extremely reliable. It is just as easy to use as MySQL and offers many, many more features. Windows users should consult with others to see how good of an option it is, I proudly don't do Windows.
Oracle
OracleSupport is considered generally considered king of the RDBMS hilll. It offers every feature one could possibly dream of when needing both data integrity assurances, and performance. It often comes at a price you can only dream about too - typcially tens of thousands of dollars.
(:idea:) You can actually download Oracle for FREE from the Oracle OTN website for personal use, and I highly recommend everyone does. Oracle's thinking appears to be "If you need it, you can afford it, and you'll pay for it. If you don't, or can't, then you can get addicted to it until you can".
See the database links in our Directory for more information.
To be continued as time permits...