vote up 6 vote down star
3

Hi, yesterday I found out that setting a database on auto growth is not a very good thing.

Are there other basic 'bad' practices (or best practices) when having SQL Server databases in production?

thx, Lieven Cardoen

flag

Autogrowth is not bad as long as you know what you're doing. Sometimes autogrowth is necessary for a database that is growing in a controlled and expected manner. If you turn autogrowth off in that case you will cause your app to shut down. – devinb Mar 5 at 13:47

3 Answers

vote up 8 vote down check

Do you have data and logs on separate devices. Is tempdb a reasonable size? Do you have disaster recovery plan? The first time you have to recover a database is not the time to start reading up on how to do it!

Are you running the default maintenance plan (DBCC, update statistics and all that stuff)? Do you know what it all does and do you monitor it for any issues?

Do you have some performance metrics on disk I/O, memory, cpu. Maybe some queries you can monitor on a regular basis and look for performance degradation.

With a new application and database, all your queries will be fast for awhile, but as your database grows, performance problems may sneak up on you if you aren't proactive.

link|flag
Any good links on this? thx – Lieven Cardoen Mar 5 at 9:53
There are, will have to hunt them down. If you don't know a lot about the above, you probably should get a SQL Server book - there are a few good ones on Tuning that cover configuration and metrics. – MikeW Mar 5 at 10:03
Thx, will check those. – Lieven Cardoen Mar 5 at 10:08
vote up 1 vote down

My personal favourite:

Do you have a backup plan?

I've seen too many databases with the transaction logs filling up the disk...

If you're getting seriouw with SQL take a look at SqlServerCentral.com. They have many good articles on everything sql related.

link|flag
vote up 3 vote down

stop the sql server from using all available memory... on a box with 4gb of ram, i'd limit it to 3gb, ensuring 1gb is left for the os.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.