Hello all,
I am creating a database for archaeologists. For a given artifact there are several attributes: color, shape, size, usage, etc. I have created a table for each attribute, and then created a master table that holds the primary key of each attribute table. When I create a relationship I'd like to do all three of the standards: enforce referential integrity, cascade updates, and cascade deletes. The problem is that I reach the 32 indexes limit pretty quickly. What can I do to fix this? I'm not sure I can break the tables out any more than they are, and I'd hate to have to forsake the cascading update/delete.
Thoughts?
Thanks in advance!
I am creating a database for archaeologists. For a given artifact there are several attributes: color, shape, size, usage, etc. I have created a table for each attribute, and then created a master table that holds the primary key of each attribute table. When I create a relationship I'd like to do all three of the standards: enforce referential integrity, cascade updates, and cascade deletes. The problem is that I reach the 32 indexes limit pretty quickly. What can I do to fix this? I'm not sure I can break the tables out any more than they are, and I'd hate to have to forsake the cascading update/delete.
Thoughts?
Thanks in advance!
Comment