Hi everyone,
I'm creating an application which uses an sqlexpress database to store details on company employees.
My database has 14 tables but only 3 of them will ever have any more records added to them (the other 11 tables will never be written to once they have been initially populated)
I need to estimate the size of the database based on the fact that these 3 tables will only have 2000 records in each table maximum.
I thought I could simply create the db and relationships, enter the data in the non changing 11 tables, make a note of the datafile size and then populate the 3 tables that will change with one record each so that i can find out how much one record will increase the filesize.
however, the datafile size remains the same, even if i add further records to the db.
how can i estimate the size of my fully populated database without actually populating it with 2000 dummy records in each table?
As you can probably tell, im a newbie
I need to know the filesize etc so that i can spec out a server to house the database.
Any help you can give will be very much appreciated,
Thanks.
I'm creating an application which uses an sqlexpress database to store details on company employees.
My database has 14 tables but only 3 of them will ever have any more records added to them (the other 11 tables will never be written to once they have been initially populated)
I need to estimate the size of the database based on the fact that these 3 tables will only have 2000 records in each table maximum.
I thought I could simply create the db and relationships, enter the data in the non changing 11 tables, make a note of the datafile size and then populate the 3 tables that will change with one record each so that i can find out how much one record will increase the filesize.
however, the datafile size remains the same, even if i add further records to the db.
how can i estimate the size of my fully populated database without actually populating it with 2000 dummy records in each table?
As you can probably tell, im a newbie
I need to know the filesize etc so that i can spec out a server to house the database.
Any help you can give will be very much appreciated,
Thanks.