This is a discussion on Cross Table References within the SQL Server Data Warehousing forums, part of the Microsoft SQL Server category; --> I'm curious about theory of cross table references. I understand the need but I'm wondering best practices. Specifically, should ...
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| I'm curious about theory of cross table references. I understand the need but I'm wondering best practices. Specifically, should Cross-tables only be made up of foreign keys or is it possible to have other columns? For example, would this be an acceptable solution. Borrower (BorrowerID) LoanType (LoanTypeID) CrossTable (BorrowerID, LoanTypeID, LoanScore, LoanValue) Or should cross-table only be made up of keys. Borrower (BorrowerID) LoanType (LoanTypeID) CrossTable (BorrowerID, LoanTypeID) Thank you. -- Message posted via http://www.sqlmonster.com |