I have a few questions regarding dimensional modeling:
While designing dimensional model from existing OLTP system, do we use the same table structures in OLTP in dimension model? For example I have a customer table in OLTP and I want to include it in my dimensional model, so can I use the same table structure while designing a customer dimension table or I can change it?
Can dimension tables refer each other? For example, in my OLTP I have EMP and DEPT table, EMP references DEPT, so I choose these two tables to be part of dimensional model, is it necessary that I put a FK constraint on EMP dimensional table?
Now, about bridge table, suppose in my OLTP I have STORE and DEPT tables and a bridge table STORE_DEPT that joins STORE with DEPT, that means I can have multiple departments within each store which is recorded in this bride table. Now, suppose I want to create dimension tables for STORE and DEPT in my dimensional model, do I need to include this bridge table also in the model?
Thanks in advance for your help.