vote up 23 vote down star
22

Design patterns are usually related to object oriented design.
Are there design patterns for creating and programming relational databases?
Many problems surely must have reusable solutions.

Examples would include patterns for table design, stored procedures, triggers, etc...

Is there an online repository of such patterns, similar to martinfowler.com?


Examples of problems that patterns could solve:

  • Storing hierarchical data (e.g. single table with type vs multiple tables with 1:1 key and differences...)
  • Storing data with variable structure (e.g. generic columns vs xml vs delimited column...)
  • Denormalize data (how to do it with minimal impact, etc...)
flag
This is a duplicate of an earlier question. See answer added below. – Onorio Catenacci Oct 10 '08 at 12:10

10 Answers

vote up 10 vote down check

There's a book in Martin Fowler's Signature Series called Refactoring Databases. That provides a list of techniques for refactoring databases. I can't say I've heard a list of database patterns so much.

Also just recently learned about a book by David C. Hay called Data Model Patterns Haven't read it yet, but I ordered it and I'll update you on if it's what you're looking for.

Turns out that there are two books by David Hay on Data Model Patterns. The first is for Business Data Model Patterns. The second book builds on the first and is far more ambitious and intriguing. The Preface alone is enlightening

link|flag
The book is titled [Refactoring Databases: Evolutionary Database Design][1] by Scott W. Ambler and Pramod J. Sadalage and is indeed very good. [1]: ambysoft.com/books/refactoringDatabases.html/… – Panos Sep 28 '08 at 12:09
Thanks for the update. – Mike Brown Oct 3 '08 at 21:48
vote up 7 vote down

Joe Celko's books are excellent for this sort of stuff, in particular "SQL for Smarties". He has some innovative solutions to common problems, most of which are reusable design patterns.

http://www.celko.com/books.htm

link|flag
vote up 3 vote down

Design patterns aren't reusable solutions.

Design patterns are reusable, by definition. They're patterns you detect in other good solutions.

A pattern is not simply reusable. You can implement your down design following the pattern however.

Relational design patters include things like:

  1. One-to-Many relationships (master-detail, parent-child) relationships using a foreign key.

  2. Many-to-Many relationships with a bridge table.

  3. Optional one-to-one relationships managed with NULLs in the FK column.

  4. Star-Schema: Dimension and Fact, OLAP design.

  5. Fully normalized OLTP design.

  6. Multiple indexed search columns in a dimension.

  7. "Lookup table" that contains PK, description and code value(s) used by one or more applications. Why have code? I don't know, but when they have to be used, this is a way to manage the codes.

  8. Uni-table. [Some call this an anti-pattern; it's a pattern, sometimes it's bad, sometimes it's good.] This is a table with lots of pre-joined stuff that violates second and third normal form.

  9. Array table. This is a table that violates first normal form by having an array or sequence of values in the columns.

  10. Mixed-use database. This is a database normalized for transaction processing but with lots of extra indexes for reporting and analysis. It's an anti-pattern -- don't do this. People do it anyway, so it's still a pattern.

Most folks who design databases can easily rattle off a half-dozen "It's another one of those"; these are design patterns that they use on a regular basis.

And this doesn't include administrative and operational patterns of use and management.

link|flag
vote up 3 vote down

Here is a link to a gentleman who has developed several hundred free database schemas.

http://www.databaseanswers.org/data_models/

Perhaps if you have to build a db quickly this will give you a starting point in terms of the tables and relationships in a given schema. Keep in mind you will probably need to modify this starting point. I have found it very useful.

Secondly SQL Server Magazine has an occasional column called "The Data Modeler" which is very educational and often contains complete schemas for a given system.

link|flag
vote up 3 vote down

AskTom is probably the single most helpful resource on best practices on Oracle DBs. (I usually just type "asktom" as the first word of a google query on a particular topic)

I don't think it's really appropriate to speak of design patterns with relational databases. Relational databases are already the application of a "design pattern" to a problem (the problem being "how to represent, store and work with data while maintaining its integrity", and the design being the relational model). Other approches (generally considered obsolete) are the Navigational and Hierarchical models (and I'm nure many others exist).

Having said that, you might consider "Data Warehousing" as a somewhat separate "pattern" or approach in database design. In particular, you might be interested in reading about the Star schema.

link|flag
vote up 2 vote down

You may find this earlier Q & A thread helpful as well.

link|flag
vote up 1 vote down

Your question is a bit vague, but I suppose UPSERT could be considered a design pattern. For languages that don't implement MERGE, a number of alternatives to solve the problem (if a suitable rows exists, UPDATE; else INSERT) exist.

link|flag
vote up 1 vote down

Check out this blog - The Database Programmer.

He describes some database patterns.

link|flag
vote up 0 vote down

After many years of database development I can say there are some no goes and some question that you should answer before you begin:

questions:

  • Do you want use in the future another DBMS? If yes then does not use to special SQL stuff of the current DBMS. Remove logic in your application.

Does not use:

  • white spaces in table names and column names
  • Non Ascii characters in table and column names
  • binding to a specific lower case or upper case. And never use 2 tables or columns that differ only with lower case and upper case.
  • does not use SQL keywords for tables or columns names like "FROM", "BETWEEN", "DELETE", etc

recomendations:

  • Use NVARCHAR or equivalents for unicode support then you have no problems with codepages.
  • Give every column a unique name. This make it easer on join to select the column. It is very difficult if every table has a column "ID" or "Name" or "Description". Use XyzID and AbcID.
  • Use a resource bundle or equals for complex SQL expressions. It make it easer to switch to another DBMS.
  • Does not cast hard on any data type. Another DBMS can not have this data type. FOr example Oracle daes not have a SMALLINT only a number.

I hope this is a good starting point.

link|flag
1  
Although your comments are quite instructive and useful, they are not design patterns. They are best practices. Thanks, – Sklivvz Sep 28 '08 at 12:00
I disagree with the recommendation for unique column names. I'd rather say customer.id to disambiguate than to say customerid even where there is nothing to disambiguate. – Paul Tomblin Sep 28 '08 at 12:55
vote up 0 vote down

Depends what you mean by a pattern. If you're thinking Person/Company/Transaction/Product and such, then yes - there are a lot of generic database schemas already available.

If you're thinking Factory, Singleton... then no - you don't need any of these as they're too low level for DB programming.

If you're thinking database object naming, then it's under the category of conventions, not design per se.

BTW, S.Lott, one-to-many and many-to-many relationships aren't "patterns". They're the basic building blocks of the relational model.

link|flag

Your Answer

Get an OpenID
or

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