JesseBethke.com
Divulgences into Web Design, Application Development, and Ponderings of Interest

Calendar

November 2008
Sun Mon Tue Wed Thu Fri Sat
« May    
 1
2345678
9101112131415
16171819202122
23242526272829
30  

Meta

Archive for the ‘Database’ Category

Automatic Population of the Time Dimension for an OLAP Cube

Saturday, May 24th, 2008

An OLAP cube is a data structure that organizes data in a fashion that promotes end-user driven adhoc reporting. Many front end utilities exist to allow users to manipulate the cube by slicing the data by dimensions, drilling through layers of granularity, and pulling out the measures they want.

One of the most common dimensions for an OLAP cube is the time dimension. The time dimension allows the user to aggregate data based on, well dimensions of time. For instance, you may report data on a daily, weekly, or monthly basis.

(more…)

Use of Joint Cartesian Join and Left Join in Subselect to Accomplish Value Override

Sunday, December 30th, 2007

This post details how to accomplish a cross-join between two tables and left join in the many-to-many to override a value in the left most table. The result is a dynamic setting view in which each target section pulls from a base of setting values, but may override the default value with it’s own value.

(more…)