A Flexible Method of Storing Control Data
By Tony Marston2006-08-29
Introduction
The traditional approach is to have a single control record containing a separate field for each item of data. However, this has the following disadvantages:
- It can result in a very large record structure, which could be a problem as most database engines have a limit to the number of columns (fields) in a table.
- Adding or removing items on the control record requires a change to the physical database structure. All components which reference this structure would then have to be recompiled.
- Any component which updates any control data will have to lock the entire record. This may cause delays to other components which try to update the same record at the same time.
Tutorial pages:
|
|
|||||||||
You might also want to check these out:
|
Leave a Comment on "A Flexible Method of Storing Control Data"
You must be logged in to post a comment.
Link to This Tutorial Page!

