vote up 2 vote down star
1

For cost savings, we're moving from an managed MSSQL DB to a dedicated db on our own server.

What configuration checklist would you perform to ensure maximun security and reliability?

flag

5 Answers

vote up 1 vote down check
  1. Set up a job or create a maintenance plan for doing full backups of all your databases daily, system databases weekly.
  2. If you're using Full recovery mode, add a transaction log backup job to run at least hourly.
  3. Make sure you have a process to know if the backup jobs aren't running (oops, someone stopped the agent a month ago, now we have no backups).
  4. Test your backups by restoring them on another server.
  5. You may need optimization jobs to keep your indexes under control daily/weekly/monthly depending on usage.
link|flag
#1 System databases daily too - they are small, don't lose a weeks data when you have disaster. #2 TLog backups every 10 minutes - same thing, don't lose an hours data. #5 do this daily if you have maintenance window. +1 for #3, #4 – Kristen Feb 19 at 18:02
vote up 1 vote down

There is a ton of stuff, here is just a partial list

log and data files on different disks

tempdb on its own disk

buy as much memory as you can afford (RAM is alway faster than IO from disk)

after doing the restore or attach make SURE that you update the statistics with fullscan and rebuild all the indexes (this is very important if you want to have optimal plans)

See also SQL Server Best Practices on the microsoft site, there are a ton of white papers available

link|flag
vote up 0 vote down

For starters, remember to remove the sa login - it's amazing how many places I've worked that hadn't done this!

Apart from that, if you have the money, invest in fast disks - it makes a huge difference IMO. A lot of the other configuration depends on your individual application/customer needs.

link|flag
You mean give it a password (one not shared with anyone except the dbas), you do not ever want to remove the admin account! And make sure the app doesn't connect using sa. – HLGEM Feb 19 at 16:00
vote up 0 vote down

Don't MS have a "best practice" tool?

Also, avoid SQL Server accounts and stick to Windows authentication, this allows you to keep usernames and passwords out of your connection strings. Then assign the operational user accounts specific permissions on the database objects they need, and nothing else (e.g. can execute SProcs but not look at the source).

Also, read through blog.stackoverflow.com, Jeff et al have had to do some work in this area.

link|flag
vote up 0 vote down

Make sure you set the default server collation to what you need. This will stop you from creating new databases in the future and having to hard code collation changes between that and otehr databsaes.

link|flag

Your Answer

Get an OpenID
or

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