First of all, I am not a database expert so maybe I have a question with a simple answer but I dont see it. To simplify the issue Ill give an example otherwise I have to explain electronic equipment which complicates the matter I think.
I have multiple tables, one for locations, one for cabinets, one for shelves and one for books. (all one to many, one location can have more cabinets, cabinets 1 to 4 shelves and the shelves can hold 8 similar sized books)
So far I can get the query's I need and the data I need, the issue is that I need to be able to reserve a place for a book, without adding it to the tables which hold the original information.
It could be I need to reserve a empty slot for a book, or when the book gets replaced I need the reservation and the existing book to be in the query, once the book gets replaced it goes from the reserved table to the tables I have now. To make matters worse, It might be we need to install a new cabinet, with one or more shelves, and one or more books.
I tried copying the tables with "_Reserved" added to the table name without the data and fill in the reservations in those tables and preform a union but could not get that to work.
Before I spend another 20 frustrating hours, I thought, maybe I am doing this all wrong, hence my visit to this site.
Any advice would be appreciated.
Regards,
Rob.