Star-schema: Separate dimensions for clients and non-clients or shared dimension for attendants?

Posted by celopes on Stack Overflow See other posts from Stack Overflow or by celopes
Published on 2010-03-07T13:24:47Z Indexed on 2010/03/08 14:36 UTC
Read the original article Hit count: 344

I'm new to modeling star schemas, fresh from reading the Data Warehouse Toolkit.

I have a business process that has clients and non-clients calling into conference calls with some of our employees.

My fact table, call it "Audience", will contain a measure of how long an attending person was connected to the call, and the cost per minute of this person's connection to the call. The grain is "individual connection to the conference call".

Should I use my conformed Client dimension and create a non-client dimension (for the callers that are not yet clients) this way (omitting dimensions that are not part of this questions):

First potential model

Or would it be OK/better to have a non-conformed Attending dimension related to the conformed Client dimension in this manner:

Second potential model

Or is there a better/standard mechanism to model business processes like this one?

© Stack Overflow or respective owner

Related posts about dimensional-modeling

Related posts about star-schema