Hello,
I have a library, and I want to migrate it from an old system to a new optimized one.
The old library was built using MS Access (mdb files), where each book is a file by itself. Each book consists of two tables, one for chapters titles and the second for contents. There is also one mdb file that contains all books names, pages number for each book, authors names and other general info.
The new system database engine is MySQL, so I have three (maybe) possibilities for storing books: 1- Store all the books chapters titles in one table, and all books contents in another huge table. 2- Store all books chapters titles in one table, and every book's content in a table for this book. (so if I have 5 books, I'll get 1 table for chapters titles and 5 for content). 3- Store them as the old system's design, each book has two tables, one for it's chapters titles and the second for it's content.
I don't prefer to use multiple databases, one database can do the job perfectly as the blogs hosted by wordpress.com (yap, they have huge database and of course they use other techniques, but I'm talking about DB system architecture).
There are more than 500 books in that library and the number is increasing.
What do you think?