Note that there are some explanatory texts on larger screens.

plurals
  1. POCalculate computed columns during ETL or during insert to data warehouse
    primarykey
    data
    text
    <p>I was hoping someone could point me to some best practices regarding when to calculate a computed value which is stored in a data warehouse.</p> <p>Consider the following example,</p> <pre><code>CREATE TABLE ( MyFactID INT NOT NULL IDENTITY(1, 1), OrderDimID INT NOT NULL, -- FK To OrderDimension StartDate DATETIME NOT NULL, CompletedDate DATETIME NULL, ElapsedCalendarTimeInMinutes INT NULL, ElapsedBusinessTimeInMinutes INT NULL ) </code></pre> <p>In this example, Elapsed calendar time in minutes would be the time (in minutes) from Start to End date. Then, our business time reflects the working time that was available during those calendar days.</p> <p>Currently, we are calculating this during ETL and inserting both dates. I'm wondering if this is the correct place to perform this operation.</p> <p>Some other thoughts were to:</p> <p>A) Use indexed views by only storing the start and end date in the fact table, then creating a view which calculates the elapsed time in minutes and has a computed column which uses a function to figure out the business days.</p> <p>B) Use an After trigger to update the elapsed calendar time and business time after an insert occurs which inserts or updates the completed date to a non-null value.</p> <p>I feel that this should be done in the DB so that if any changes are made to the end date or calculation of the business time, it would reflect. Doing it during ETL seems like it would be prone to problems.</p> <p>Any thoughts on this are appreciated!</p> <p><strong>Update:</strong> There are at least 6 columns determined in this way. We have business minutes, hours, and days (days are 12 hours for <em>our</em> business); then we have client minutes, hours, and days (determined via lookup table for the client's working hours); then we have simply calendar minutes, hours, and days (though these are not being stored; only minutes). Since this is a DW, I would have expected all the data to be present and not require calculation. To me, it seems like more work to ensure the ETL is correct and applied everywhere than to create a view overtop of the base data to get the computed information.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload