- Local time
- Today, 22:07
- Joined
- Feb 19, 2013
- Messages
- 17,360
There is no doubt that enforcing referential integrity (a child record cannot exist without a parent record) is a good thing to do, But the blanket statement that a design is not good because you cannot enforce RI is not always true.
You can have a child record providing the parentFK is null. It is only when you assign a value to the parentFK, that value must exist as the primary key in the parent table and referential integrity can be enforced.
This feature can have benefits. For example in a cashbook type accounting system you have income/expenses and bank transactions. The expense occurs first and the bank transaction later, but the transaction is the parent since one transaction (a payment) might cover many expenses. So you leave the expense parentFK as null and when the payment occurs in the bank statement assign the transactionPK to the parentFK(s).
Once you have done this assignment, referential integrity kicks in and you cannot delete the bank transaction - but you can still edit the expense parentFK or even delete the record however you can use code and/or conditional formatting to prevent this happening
You could say don't enter the expense until the bank transaction occurs but a) this is not always convenient and b) by summing the income/expenses with a null parentFK you have a rudimentary view of income and expense accruals - accruals are not normally part of a cashbook system.
If you truly want to fully enforce referential integrity so no child record can exist even with a null parentFK then you also need to set the parentFK required field to yes.
You can have a child record providing the parentFK is null. It is only when you assign a value to the parentFK, that value must exist as the primary key in the parent table and referential integrity can be enforced.
This feature can have benefits. For example in a cashbook type accounting system you have income/expenses and bank transactions. The expense occurs first and the bank transaction later, but the transaction is the parent since one transaction (a payment) might cover many expenses. So you leave the expense parentFK as null and when the payment occurs in the bank statement assign the transactionPK to the parentFK(s).
Once you have done this assignment, referential integrity kicks in and you cannot delete the bank transaction - but you can still edit the expense parentFK or even delete the record however you can use code and/or conditional formatting to prevent this happening
You could say don't enter the expense until the bank transaction occurs but a) this is not always convenient and b) by summing the income/expenses with a null parentFK you have a rudimentary view of income and expense accruals - accruals are not normally part of a cashbook system.
If you truly want to fully enforce referential integrity so no child record can exist even with a null parentFK then you also need to set the parentFK required field to yes.