This is a discussion on dataware house relational table within the SQL Server Data Warehousing forums, part of the Microsoft SQL Server category; --> hai can we use our relation tables as our dimension tables.or is there any procedure to convert relational table ...
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Typically you want to create dimension tables separate from your transactional (relational) tables. So if you have a Customer table you would want to create a DimCustomer dimension table within your data mart or warehouse. The dimension tables should have unique surrogate keys that are different than the source system (business key) and you should only use the columns that will be useful for reporting and analysis. This is part of best practices. -=Steve "vidhya" wrote: > hai > > can we use our relation tables as our dimension tables.or is there any > procedure to convert relational table to dimensional table. > > > thank you > > > |