Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what should my initial database size be

I'm moving a database from MySQL to SQLServer. When creating the database, what should I set the initial size to? I know the size of the imported database will be about 130MB but will grow. Should 130MB be the initial size or should I just take the default of 2MB?

like image 835
Jeff Avatar asked Jul 09 '10 19:07

Jeff


1 Answers

You should make it the correct size to fit your data, you will get a performance hit whenever the file needs to grow.

It depends how fast it would grow, I would say 150MB with 10% Autogrowth.

There is advice on the MSDN that is worth a read.

like image 100
Chris Diver Avatar answered Oct 25 '22 23:10

Chris Diver