I'm going to store messages from external products in a database. All messages are the same and have a CATEGORY property. Since most queries that will be done on the db filter the category my DB Architect suggested to split the one table into one table per category.
Normally I would need one Class per table. Unfortunately There are more than 100 Categories...
Is it possible to implement my scenario with JPA/Hibernate?