vote up 1 vote down star
2

I'm looking at implementing an RDBMS. Are there any good resources out there about how a database works internally, and the kinds of things I'd need to know when starting out to build my own? (Please no comments about whether it's a practical idea or not - just imagine it's for a hobby project or something).

Again - interested in the RDBMS design, not the Database design. And efficiency is very important (it seems like it's reasonably easy to design some kind of relational database like structure if I don't care about speed).

flag
Good luck finding it. I've tried to find info myself, and got little. I think you should play it agile. Get it working, then get it efficient. 'Working' is simple, honestly. – cmartin Feb 11 at 15:53
Actually I'm trying that approach but finding that what it's easy to make a naive but unbelievable slow and inefficient RDBMS, it's not obvious how to optimize it. – Anthony Rizk Feb 11 at 16:19

3 Answers

vote up 1 vote down check

There are a few textbooks about this sort of stuff out there, when I was in college, we did this for a class project. This book should really help you on your way Database Systems: The Complete Book

I forgot to mention it, but my code is on googlecode here: cs4420-dbase

Please forgive the fact it is written in java, but I was outvoted by my teammates on that decision. but the basic ideas are all still there. It handles file creation and handling as well as a simple SQL parser and optimizer. It handles basic indexing (b-tree) and "memory" management. Please forgive some of the lack of commenting and strange commenting, many late nights were spent on that project.

link|flag
The project looks like it's closed - can I still get the code? – Anthony Rizk Feb 11 at 16:17
The code is still available, I just put that in case people wanted more info on it or were watching it, It just hasn't been worked on since we finished the course. go to source and get the code anon. – Chris J Feb 11 at 17:00
Ah, didn't notice (not too familiar with Google code - though I guess it's not too dissimilar from any SVN web interface). +1 then - this is very helpful – Anthony Rizk Feb 11 at 18:11
That does look like a nice book; thanks for mentioning it. – Jay Kominek Feb 11 at 19:43
vote up 1 vote down

I'd suggest starting with Introduction to Database Systems and Transactional Information Systems. They should both have bibliographies to take you further.

link|flag
Thanks - those both look like what I'm interested in - deeper knowledge of the theory.. – Anthony Rizk Feb 11 at 16:16
vote up 1 vote down

Building a RDMS is not trival, you need to combine classic CS knowledge from several fields together with deep knowledge about harddrives, OS specifics, filesystems, memory, cpu, caches to make it efficient.

A good article about architecture we are required to read is:

http://www.nowpublishers.com/product.aspx?product=DBS&doi=1900000002

For theoretical knowledge about databases I would recommend to buy a book on this topic, I can only talk about the book I use for this, which is Database Systems an Application-Oriented Approach by Kifer, Bernstein and Lewis.

You might want to look at some opensource databases for ideas.

link|flag

Your Answer

Get an OpenID
or

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