vote up 4 vote down star
1

Seems like a waste of resources to me, but our team is currently discussing. What is generally considered the best practice here?

flag

73% accept rate

8 Answers

vote up 12 vote down check

Please see Guidelines for choosing antivirus software to run on the computers that are running SQL Server for help.

link|flag
vote up 16 vote down

Obviously some machines need AV but if you need help explaining why some machines might not, here's my favorite XKCD comic...

alt tex

link|flag
vote up 4 vote down

Anti-virus software is typically aimed at end-user PCs, or for scanning emails on servers. I can't imagine any scenario where normal anti-virus software would help on a DB server, since it usually only monitors HTTP connections and does on-access scans of files the user accesses.

For protecting your servers, you need something different, mainly a firewall and perhaps also an intrusion detection system (IDS).

link|flag
vote up 2 vote down

You should run a virus scanner on your servers, but then go into the AV exceptions settings and exclude the folder/files that contain the database files, this way the machine is safe from infection, but it won't rescan the massive database files everything they read & written too, which is all the time.

Also I recommend a lean AV package, like NOD32 by ESET, light on ram, very fast, great multicore support, it will make the least impact on performance.

link|flag
vote up 1 vote down

Is it exposed to the internet? Can the system run processes that start executables?

Typically virus scanning systems are something you want on all systems. Worms that can go from PC-to-PC over the network can still attack systems that are not normally exposed to the internet are one of the common justifications for this.

edit another important part is who as Remote Desktop access? These are poential risk points as well if they go out to the internet for anything. Granted you would hope they would know better, but it is still a potential concern

link|flag
Exposure to the internet is a bad metric, I've seen internal servers get infected, keep in mind a good AV protects from service based infections, network packets, etc. Malware goes way beyond an EXE the user runs. – TravisO Dec 15 '08 at 17:40
I know, it was just one of the few questions. My second paragraph gets into this. It is just that if it is exposed to the internet, that is typically an immediate ticket to getting AV installed, even to those that are not "fond" it if being on a db server. – Mitchel Sellers Dec 15 '08 at 18:56
vote up 1 vote down

Answering this in isolation is hard. You need to consider your overall security strategy of your network. And how exposed the server is. How many staff have access to it and what are their security levels? What other antivirus do u have on the network, is it external facing or just internal? Is antivirus really a performance hit on it if it is just running queries all day long anyway?

All of these are important considerations.

link|flag
vote up 0 vote down

I'm in favor of having anti-virus on the SQL Server but you must be sure to exclude the mdf, ndf, and ldf files from scanning or you'll hurt your performance. A reasonable compromise if your system has limited exposure is not using the real-time virus scanner and just schedule one check a day.

Another consideration is ensuring that there's some way to notify a sys-admin that there is a virus. Servers don't always get that kind of attention.

HTH Andy

link|flag
vote up 0 vote down

I certainly wouldn't risk no anti-virus, but it is a big performance hit. Making the assumption that no-one will ever use that machine is dangerous (because you might need to install updates etc.), I guess a good compromise would be:

  1. Install the Antivirus.
  2. Lock the machine down - e.g. no Windows File Sharing, small set of authorized users, etc.
  3. Turn the antivirus resident shield off.
  4. When you copy something onto the machine update the AV and scan the file before opening it.

This is based heavily on the assumption that the people who you allow to log into the machine are responsible. And as always, make sure you are backing up often onto disconnected media (e.g. tapes/DVDs/Internet etc.) - you never know when the next blaster is going to strike.

link|flag

Your Answer

Get an OpenID
or

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