vote up 0 vote down star

I need a pet opensource database to learn the principle of database design, can you suggest one for me.

flag

you want the database engine itsself open source? – Amr ElGarhy Aug 3 at 11:28

7 Answers

vote up 11 vote down check

How about SQLite? They don't get much smaller than this.

link|flag
+1 Being in the public domain, it also doesn't get more open source than this. – balpha Aug 3 at 11:30
1  
Don't mention this to RMS. – Manni Aug 3 at 11:31
1  
I said "open source", not "free" -- so I said "Jehova" anyway :-) – balpha Aug 3 at 11:32
4  
For teaching I would prefer a DBMS that enforces foreign keys. SQLite does not. – finnw Aug 3 at 12:22
2  
if you're DB can't do FKs, you can't "learn the principle of database design" – KM Aug 3 at 13:35
show 2 more comments
vote up 5 vote down

Not really pet but: PostgeSQL

  1. Not hard to install (at least at Windows)
  2. Feature reach
  3. Not too quirky
  4. Bundled with documentation (including tutorial and SQL reference) and tools (at least Windows version)
link|flag
vote up 2 vote down

Firebird http://www.firebirdsql.org/

link|flag
vote up 1 vote down

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.

link|flag
1  
Every SQL database I've ever used has this feature, in one form or another. – Neil Butterworth Aug 3 at 12:35
As Neil says, they all do this - search for "query execution plan". And it's not pseudo-code! – Peter Boughton Aug 3 at 13:04
@Peter + Neil: Yes, all databases have "EXPLAIN", I know. What I wanted to tell is, that the Pseudo-Code (yes, I insist, it is in SQLite!) of SQLite translates so easily to what is going on under the hood, that it can be used for understanding how the DB works. I don't think, that an abstract "query execution plan" of an oracle db could tell you the same. – Juergen Aug 3 at 13:59
Addon: I am sorry, when I hurt some of the db folks out there by badly explaining what I really mean. I try to do better next time ... – Juergen Aug 3 at 14:00
vote up 1 vote down

Apache Derby implemented in Java

CouchDB written in Erlang. It is document-oriented rather then rational.

Cassandra by Facebook

link|flag
vote up 0 vote down

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.

link|flag
aptitude install postgresql-8.4 is pretty darn easy (which, yes, will get you a working database). Suggest a new distro if its hard to install on yours. – derobert Aug 3 at 15:29
vote up -1 vote down

"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 ?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.