Required/Optional/Custom
Lets take the exercise library as an example. We want to have a MasterExercise library which the master admin can list, add, edit and delete. We also want a CustomExercise library with the ability for each trainer to list, add, edit and delete their own custom exercises. We need a "SelectExercise" action where the trainer can list and select a subset of master exercises and finally we need an Exercise view in the database that combines all required master exercises (for this use case there are probably no required master records, but for some problem spaces there are so it is easiest just to generally support required master elements and set the number of them to zero for this special case) together with any master exercises associated to this trainer and all custom exercises created by this customer which ends up being a pretty simple UNION query.



I don't know if it is or not, but that entry seems incomplete to me. I think I understand it because it sounds quite similar to something we just got done implementing (though ours was a specific solution like your example), but I'm not sure I would have understood it if I hadn't had that experience recently.
Basically imagine Exercise with properties of (say) title and description (to simplify).
Create tbl_MasterExercise with ExerciseID int, Title varchar(100) Description ntext and Required bit.
Add tbl_CustomExercise with ExerciseID int, Title varchar(100) Description ntext and TrainerID int
Then tbl_TrainerToExercise with TrainerID and ExerciseID (both int).
Then for add, edit and delete, build admins around the master table (for master admins) and custom table (for trainers). Then create a screen for trainers to list optional master exercises (where required = 0) and assicate any they want to their library (those associations populate the tbl_TrainertoExercise).
Finally write a SQL view that selects from Master table where Required = 1 or where join to the current trainer ID via the tbl_TrainertoExercise and then union with all records in custom exercise table for that trainer ID and you get your combined view of required, selected optional and custom exercises for a given trainer.
Did that make it *any* clearer?
* I thought that phrase came up within the first couple of pages of the GoF Design Patterns book, but I can't seem to find it. Can anyone confirm or deny that?