P
Patsy
I have a database to track what books are used in what
courses at a college.
I have a table for books, another table for courses, and
a bridge table allows me to assign books to courses.
(I also have a publisher table and another table that
lists all the courses and their sections for a semester)
Referential intregity is enforced on all relationships.
When a book changes, I must:
first delete the record assigning the old book to the
course
Then delete the old book from the textbook table (if no
other course uses it)
then add the new book to the textbook table
and finally assign the new book to the course
whew!
how could I make this easier for users?
I have forms for each of the tables
I prefer not to use cascade update or delete for fear
what the users might do...
please help!

thanks!
then assign the new book to the course
courses at a college.
I have a table for books, another table for courses, and
a bridge table allows me to assign books to courses.
(I also have a publisher table and another table that
lists all the courses and their sections for a semester)
Referential intregity is enforced on all relationships.
When a book changes, I must:
first delete the record assigning the old book to the
course
Then delete the old book from the textbook table (if no
other course uses it)
then add the new book to the textbook table
and finally assign the new book to the course
whew!
how could I make this easier for users?
I have forms for each of the tables
I prefer not to use cascade update or delete for fear
what the users might do...
please help!

thanks!
then assign the new book to the course