C
Christopher Glaeser
Suppose I want to generate a fax from various forms/tables. For example,
suppose I generate a fax from the contact information in either a WorkOrder,
Memo, or Contact and want to maintain the parent/child relation among these
tables. So, tblFax includes a ForeignKeyType/ForeignKeyID pair that may
point to the WorkOrderID, MemoID, or ContactID, and the field ForeignKeyType
specifies which table for ForeignKeyID is associated.
Is this a reasonable design? In other words, is it a good design to use a
ForeignKeyType/ForeignKeyID pair to point to more than one parent table?
Are there any pitfalls I should be aware?
Best,
Christopher
suppose I generate a fax from the contact information in either a WorkOrder,
Memo, or Contact and want to maintain the parent/child relation among these
tables. So, tblFax includes a ForeignKeyType/ForeignKeyID pair that may
point to the WorkOrderID, MemoID, or ContactID, and the field ForeignKeyType
specifies which table for ForeignKeyID is associated.
Is this a reasonable design? In other words, is it a good design to use a
ForeignKeyType/ForeignKeyID pair to point to more than one parent table?
Are there any pitfalls I should be aware?
Best,
Christopher