I need a pet opensource database to learn the principle of database design, can you suggest one for me.
|
|
|||
|
|
|
How about SQLite? They don't get much smaller than this. |
||||||||||||||||||
|
|
|
Not really pet but: PostgeSQL
|
||
|
|
|
|
Firebird http://www.firebirdsql.org/ |
||
|
|
|
|
I also would recommend SQLite, since you could do "EXPLAIN" on any statement and get the internal Pseudo-Code that implements the functionality. The Pseudo-Code itself is documented and gives great example how a database could work internally. I myself learned a lot by looking at the explained statements. |
||||||||||
|
|
|
Apache Derby implemented in Java CouchDB written in Erlang. It is document-oriented rather then rational. Cassandra by Facebook |
||
|
|
|
|
SQLite, as mentioned above. All the alternatives are a PITA to install (relatively). And if you're in a corporate setting, some uptight sysadmins frown on client/server packages. SQLite is a stand-alone program, one file per database, nice command line tools, fast. And price can't be beat. Lot's of big companies use it. |
||
|
|
|
"to learn the principle of database design", it should be strongly recommended to stay away from anything that smells SQL. By looking at "the SQL way of doing things", you stand a very big chance of learning a great many things that are plain wrong. Teaching and learning the principles of relational databases and how to design them, is much better done using REL. That has been created with teaching in mind. See http://dbappbuilder.sourceforge.net/Rel.html BTW. Your title says you want to TEACH, and your question says you want to LEARN. Which is it ? |
|||
|
|
