Hi Guys,
I am working on a big database for a client. At this stage we have only two main tables : Projects and Clients. "Projects" is pretty straight forward with basically just contact details.
The Personnel table is a problem. The table contains about 100 fields under 9 different headings.
My client expects the database to grow to 30 000+ records.
What will be the best way to build this database?
(Option1)
One "Personnel" table with all 100 fields
(Option2) - This is the one I am thinking of.
Split the personnel table into 9 separate tables
Which one of these two options will give us the best performance if the database gets big (30000+ records)
Requirements:
Initially we will need to import data into the Personnel table from excel. If all 100 fields are in one table, this should be easier. With the fields split into multiple tables, we will have to do multiple imports.