Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a server with a default instance and 2 named instances of SQL Server 2005 standard installed. This is a mission critical production server that cannot be restarted during normal business hours.

Will uninstalling the two named instances of SQL Server 2005 require a reboot or put the server in a state that may cause issues with the default instance of SQL Server 2005 until it's rebooted?

share|improve this question
I've already stopped the services for the 2 named instances. – DBAndrew Jun 16 '09 at 16:26

2 Answers

up vote 1 down vote accepted

This would probably get a better answer at serverfault.com.

I'm not sure how much it would help perf, if SQL isn't getting hit it doesn't do much. You could probably get away with uninstalling, but then again when in surgery bad things happen. I've never killed SQL server uninstalling an instance, but I have killed the client tools. I would take one of the following approaches:

a) First, backup and drop all the databases to reclaim the disk space. Then stop disable the services for the named instances. The binaries will still be there, but they aren't too large and will be sitting idle.

b) Better long-term plan if you can source the hardware is to setup a new de novo box and drop a clean SQL instance over there, then port the live server over. Really not too painful. Then repurpose old box as is fit.

share|improve this answer

Is there a critical reason why you need to uninstall named instances. Can you just ignore them?

EDIT: the answer is yes you can uninstall via add/remove programs

Rebooting doesn't occur

An article which might apply to your situation:

http://support.microsoft.com/?kbid=915854

share|improve this answer
Cleanup and performance on the server, trying to eliminate extra overhead and free up as much resources as I can. The 2 named instances where setup for reporting services and are no longer used. – DBAndrew Jun 16 '09 at 16:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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