Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> comp.databases.theory -> Units of Measurement in the Database Model

Units of Measurement in the Database Model

From: John R. Lewis <johnrlewis_at_hotmail.com>
Date: 11 Apr 2002 11:01:52 -0700
Message-ID: <4323c1b8.0204111001.4cd074e2@posting.google.com>


I am designing the Data Model for a large enterprise application, and have run into a problem. I solicit your feedback.

The Problem:

How should the database be organized in regards to measurements recorded, and the units of measurement (UOM) used to record them?

When recording large numbers of measurements, it is important to know what is being measured. A number is meaningless without its UOM.

As a side issue, in this design, many important tables contain a foreign key to a "Signature" table, where a digital signature for that record is stored. If ever the record is changed, the signature becomes invalid.

The Solutions:

  1. Don't Record UOM in Data Model

One solution is to keep the data model completely unaware of the UOM being used for a particular measurement. This solution would require the Application and/or Presentation logic be aware of the UOM.

PRO
* Simple Data Model (Narrow Tables)

Another solution is to hard code the UOM in the Data Model, and never allow for changes. For example, instead of having a field named "OAT" for outside air temperature, have a field named "OATDegC" to denote the UOM being used.

PRO
* There is never any confusion in regards to the UOM being used.

This solution would have a table named "UnitsOfMeasurement" that would consist of the fields: "TableName", "FieldName", "UnitsOfMeasure". When the application is configured for a particular customer, UOM choices would be recorded in this table. PRO
* No UOM confusion

This solution would add one additional field per measurement recorded. This field would be a foreign key to a lookup table containing all possible UOM.

PRO
* No UOM confusion

Thank you for reading this posting. I hope someone out there can help. Received on Thu Apr 11 2002 - 13:01:52 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US