I have a check (the kind you use to pay your bills) fact table with three date-role dimensions - issue date, expiration date and final disposition (stopped, cleared, etc.) date. These will be implemented in the usual way - each date represented by the appropriate key value from its date dimension.
This will be a huge table and I would like to take advantage of SQL Server 2005 partitioned tables to manage it. I would like to partition the table on expiration date (which is determined at the time a check is issued).
Would it be reasonable for me to include the actual expiration date as a degenerate dimension, strictly for partitioning purposes?
This will be a huge table and I would like to take advantage of SQL Server 2005 partitioned tables to manage it. I would like to partition the table on expiration date (which is determined at the time a check is issued).
Would it be reasonable for me to include the actual expiration date as a degenerate dimension, strictly for partitioning purposes?