Schema - Do you use computed columns rather than denormalized fields?

Last updated by Brook Jeynes [SSW] 8 months ago.See history

When you have a denormalized field, use a computed column. In SQL Server they can be persisted.

Use the suffix "Computed" to clearly distinguish that this field is a computed field.

NormalizedFields Bad
Figure: Bad Example - This field was manually updated from code in the middle tier.

NormalizedFields Good
Figure: Good Example - There was no code in the middle tier to calculate this (and it has the correct name)

Computed columns have some limitations - they cannot access fields in other tables, or other computed fields in the current table.

You can use user-defined functions (UDF) from code in a reusable function, this allows one computed column to use a function to call another function. Here is an example:

ALTER FUNCTION [dbo].[udfEmpTime_TimeTotalComputed]
(
@TimeStart as DateTime,
@TimeEnd as DateTime 
   
)
RETURNS DECIMAL(8,6)
AS
BEGIN
-- This function returns the time difference in hours - decimal(8,6)
RETURN (round(isnull(CONVERT([decimal](8,6),@TimeEnd - @TimeStart,(0))*(24),(0)),(2)))

 END

Figure: This is the user defined function

NormalizedFieldsDefine
Figure: Setting up a computed column in the table designer

We open source. Powered by GitHub