Schema - Do you use computed columns rather than denormalized fields?
Last updated by Brook Jeynes [SSW] over 1 year ago.See historyWhen 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.
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