When trying to connect to a server in Management Studio (specifically 2008), there is a field where you enter the Server name. That field also has a drop-down list where it shows a history of servers that you have attempted to connect to.

I would like to know:

  1. How to remove an individual item from that history.
  2. How to remove an item from the Login field history for each Server name.

Thanks!

link|improve this question
feedback

5 Answers

For SQL 2005, delete the file:

C:\Documents and Settings\<USER>\Application Data\Microsoft\Microsoft SQL Server\90\Tools\Shell\mru.dat

For SQL 2008, the file location, format and name changed:

C:\Documents and Settings\<USER>\Application Data\Microsoft\Microsoft SQL Server\100\Tools\Shell\SqlStudio.bin

How to clear the list:

  1. Shut down all instances of SSMS
  2. Delete/Rename the file
  3. Open SSMS

This request is registered on Microsoft Connect

link|improve this answer
I open the SqlStudio.bin, the file is big, it seems possible contain other information,what will lose other than connection history? – SilverNight Aug 1 '10 at 7:02
1  
The file contains user settings - anything that you have customized will be lost. If you have some .Net or Powershell skills, look at this answer stackoverflow.com/questions/6230159/… – Raj More Aug 17 '11 at 12:01
feedback

In Windows Server 2008 standard with SQL Express 2008, the "SqlStudio.bin" file lives here:

C:\Users[SomeUser]\AppData\Roaming\Microsoft\Microsoft SQL Server\100\Tools\Shell\

link|improve this answer
you forgot: SqlStudio.bin – Mike Trader Nov 26 '11 at 0:43
feedback

File SqlStudio.bin actually contains binary serialized data of type "Microsoft.SqlServer.Management.UserSettings.SqlStudio".

Using BinaryFormatter class you can write simple .NET application in order to edit file content.

link|improve this answer
feedback

For Windows Vista

Sql Server 2005

Delete this file .. or open it with the Notepad and clear the server names that you want Clear from the history

C:\Users[User Name]\AppData\Roaming\Microsoft\Microsoft SQL Server\90\Tools\Shell\mru.dat

link|improve this answer
feedback

From the Command Prompt (Start \ All Programs \ Accessories \ Command Prompt):

DEL /S SqlStudio.bin
link|improve this answer
feedback

Your Answer

 
or
required, but never shown