vote up 12 vote down star
15

As a junior programmer I think it may be beneficial to learn solid database design. What books would you recommend on learning database design? Just to be clear, the specific aspect of design I am referring to is creating a collection of tables and their relationships.

Note: The programming books I have enjoyed reading (gaged by teaching style, depth, and accuracy) are: CLR via C#, C# in a Nutshell, Framework Design Guidelines (by Krzysztof Cwalina; Brad Abrams), and C# in Depth.

flag

13 Answers

vote up 5 vote down check

If you're interested in a very theoretical approach to database design, you may want to check out The Third Manifesto or The Database Relational Model: A Retrospective Review And Analysis—both by Chris Date.

link|flag
This is very interesting, thank you. – beef Jun 22 at 19:21
vote up 7 vote down

work with someone that is much better than yourself, and try to understand what and why they do things their way. Be open to their input and suggestions.

link|flag
1  
And in the same line of thought, study the database model of successful applications, try to understand which decisions were taken, what simplifications were made, what was left out and why... – tekBlues Jun 22 at 18:55
3  
I think this is the best answer. Books are great, and I've read a few of them but the best advice comes from real practitioners who have designed successful high traffic systems. In my opinion, the key to effective data design is to know 1) where and how to denormalize appropriately, and 2) how to tune the system to ensure the most efficient maintenance and disaster recovery plan. In my case, I had to learn these from two different people. One final thought - find some big databases (many tables) print them out so you can see the whole thing. You'll learn a lot from the big picture. – gidmanma Jun 22 at 21:04
6  
I totally agree with this answer. In my case this resource is not available. – beef Jun 22 at 23:39
vote up 4 vote down

Database Design for Mere Mortals

link|flag
2  
That and the related "SQL Queries for Mere Mortals" were a huge help when I was getting started. It's amazing so many years later to see experienced developers who could benefit from these books. – Tom Jun 22 at 18:55
1  
+1 excellent starter books indeed !! – marc_s Jun 22 at 21:02
This seems like a great book and will continue reading. Thank you! – beef Jun 24 at 0:42
+ 1 for the book link :) – Stark Sep 21 at 17:41
vote up 2 vote down

I read Beginning Database Design: From Novice to Professional last summer in preparation for my current job. It's a good, readable, and relatively general overview of database design patterns and heuristics. It's based around SQL, but mentions other technologies.

link|flag
vote up 2 vote down

A couple of interesting reads to get you started (although I second the book recs as database design is complex and really needs to be looked at in depth)

http://www.deeptraining.com/litwin/dbdesign/FundamentalsOfRelationalDatabaseDesign.aspx http://www.simple-talk.com/sql/database-administration/ten-common-database-design-mistakes/ http://www.tek-tips.com/faqs.cfm?fid=4785 http://www.sommarskog.se/dynamic_sql.html http://stackoverflow.com/questions/621884/database-development-mistakes-made-by-appdevelopers/621891#621891

You can't really understand database design until you get into the subject of performance tuning. There is so much bad design in databases becasue poorly performing choices were made at the design level where better choices are known but the designer didn't think about using them or worse wanted a more "elegant" solution. Solutions that look good to object oriented programmers are often the worst possible choices for a database. I highly recommend that after you read the design books that you look up some performance tuning books onthe database of your choice. Performance tuning is usually different for every database product, so you must read for the products you are going to use.

link|flag
These links are helpful, thank you. – beef Jun 23 at 12:58
vote up 1 vote down

Add Joe Celko's SQL for Smarties to your list.

link|flag
That's a SQL book, not a database design book. – sledge Jun 22 at 18:46
1  
Yes it is. And when you better understand the subtleties of SQL, you will better understand what constitutes good database design. – Carl Manaster Jun 22 at 18:53
1  
Thank you for the suggestion Carl. It looks like the book opens with design. I will check it out. – beef Jun 22 at 19:03
vote up 1 vote down

I've used Fundamentals of Database Systems by Elmasri and Navathe. It helped immensely.

link|flag
Link: amazon.com/… – sledge Jun 22 at 18:50
vote up 1 vote down

This may help you:

Beginning Database Design

Publisher: APress
Published: 17 January 2007
Format: Paperback 240 pages
link|flag
vote up 1 vote down

try these video with the great Barry Williams, no need to read a 500 pages book:

http://databaseanswers.ning.com/video

"how a schema is built step by step"

About a book .. I can that Hernandez's book are the best to begin

link|flag
+1 I really like that video as an introduction to. It is extremely dry, but I still think it gives a lot of good pointers for a database beginner. – P-A Sep 9 at 8:27
The uncut version from Microsoft: msdn.microsoft.com/en-gb/express/bb403186.aspx The one on his own website (databaseanswers.com) and Youtube is only the first of two example he talks about. – P-A Sep 9 at 8:33
vote up 1 vote down

The Manga Guide to Databases is actually a surprisingly comprehensive (and fun) introduction to the topic.

One thing I've found is that relational database normalization theory is surprisingly helpful when you apply it to data structure design. It's a rigorous application of the "Don't Repeat Yourself (DRY)" principle to your data.

link|flag
Will check this out, thank you! – beef Jun 23 at 12:57
vote up 1 vote down

The Art of SQL is also a good read.

link|flag
vote up 0 vote down

I took my first steps into databases trying to hack MySQL using MySQL and mSQL, which is now out of print. The introductory chapters to that book were where I was first exposed to the concepts of normalization and relations, which are important to any well-defined database; they were written in a pretty easy-to-understand way, IMO.

Later during college I took a relational algebra class, and that class, coupled with the fundamentals I learned reading the opening chapters of that book really helped me fully understand how to design database schemas.

Now I'm not saying you should get this book and magical understanding will come your way -- far from it. In fact, you can probably be better helped by reading wikipedia, but if you happen to stumble on it and read the first few chapters, it'll help when you start delving deep with some of the other, more advanced topics.

link|flag
vote up 0 vote down

Practice makes perfect.

I haven't read many db books, but working with good specialists and with different projects I've got enough practice to make databases for medium sized projects. Of course, I can't touch in database specialists, whose life is somewhere between tables :-)

link|flag

Your Answer

Get an OpenID
or
never shown

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