Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Techniques for database inheritance?

What are the tips/techniques when you need to persist classes with inheritance to relational database that doesn't support inheritance?

Say I have this classic example:

Person -> Employee -> Manager                    -> Team lead                    -> Developer        -> Customer -> PrivilegedCustomer                    -> EnterpriseCustomer 

What are the available techniques to design the database? Pros and cons of each?

p.s. I have searched and found several question regarding database inheritance but most were about changing to a database engine that supports it natively. But let's say I'm stuck with SQL Server 2005... what are my options?

like image 988
chakrit Avatar asked Dec 22 '08 16:12

chakrit


People also ask

What are the two methods of implementing inheritance in database tables?

You can represent inheritance in the database in one of two ways: Multiple tables that represent the parent class and each child class. A single table that comprises the parent and all child classes.

What is inheritance in DBMS with example?

Inheritance is an important feature of Generalization and Specialization. It allows lower-level entities to inherit the attributes of higher-level entities. For example, the attributes of a Person class such as name, age, and gender can be inherited by lower-level entities such as Student or Teacher.


2 Answers

Three common strategies:

  1. Create a table for each class in the hierarchy that contain the properties defined for each class and a foreign key back to the top-level superclass table. So you might have a vehicle table with other tables like car and airplane that have a vehicle_id column. The disadvantage here is that you may need to perform a lot of joins just to get one class type out.

  2. Create a table for each class in the hierarchy that contains all properties. This one can get tricky since it's not easy to maintain a common ID across all the tables unless you're using something like a sequence. A query for a superclass type would require unions against all the tables in question.

  3. Create one table for the entire class hierarchy. This eliminates joins and unions but requires that all of the columns for all class properties be in one table. You'll probably need to leave most columns nullable since some columns won't apply to records of a different type. For example, the vehicle table might contain a column called wingspan that corresponds to the Airplane type. If you make this column NOT NULL then any instance of a Car inserted into the table will require a value for wingspan even though a value of NULL might make more sense. If you leave the column nullable you might be able to work around this with check constraints but it could get ugly. (Single Table Inheritance)

like image 161
cliff.meyers Avatar answered Oct 04 '22 07:10

cliff.meyers


Be careful with database inheritance in certain situations - we implemented it in our application for our auditing strategy and we ended up with a performance bottleneck/nightmare.

The problem was that the base table we used was insert only and rapidly changing so what we ended up with were deadlocks all over the place. We are currently planning to break these apart into their own tables because the headache of having the same columns in 15 different tables versus a performance nightmare is well worth it. This was also compounded by the fact that the entity framework doesn't necessarily handle inheritance efficiently (this is a known issue by Microsoft).

Anyway, just thought I'd share some knowledge since we've been through the wringer on this issue.

like image 37
jjm340 Avatar answered Oct 04 '22 07:10

jjm340