I have a table of about 1000 records. About half of them will use a set of fields containing certain characteristics. There are about 10 corresponding fields. The other half of the entries do not need completed information.
This table is central to the database and will occupy the bulk of the operations. Although there are only about 1000 records, this is not so much.
The hardware on which the database is stored is old and slow (a spinning hard drive is not an SSD ...), so I want to have a fairly optimized structure to make the most of it. Obviously, increasing the size of the database alone due to empty fields is not a serious problem, but if it slows down the queries, then this is not good.
I think I should describe the setting. There is currently an Access 2007 client and an Access backend, although the backend will be migrating to the SQL server soon. The backend is currently located on the main server rack, but when upgrading to SQL Server it will receive its old server rack.
So should I make a separate table to store the aforementioned feature set or leave it as is?
source
share