Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question
See my answer for a little UI I wrote to do this, I was a little late to the party so my answer is way down the bottom at present. – Mark Oct 23 '12 at 22:00

10 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

share|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? – Shiba Aug 1 '10 at 7:02
3  
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
1  
In widnows 7 it's under C:\Users\<USER>\AppData\Roaming\Microsoft\Microsoft SQL Server\100\Tools\Shell – Marwan Feb 17 at 12:56

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

%UserProfile&\Microsoft\Microsoft SQL Server\100\Tools\Shell\
share|improve this answer
you forgot: SqlStudio.bin – Mike Trader Nov 26 '11 at 0:43
This doesn't help. The file will be recreated with the same users in it. – nima Sep 24 '12 at 10:53
@nima you may need to close SSMS before deletig the file. Also see my answer for a way to delete individual items. – Mark Sep 26 '12 at 22:29

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.

share|improve this answer
See my answer for a simple UI that I have wrapped around this code. – Mark Sep 26 '12 at 22:34

As of SQL Server 2012 you no longer have to go through the hassle of deleting the bin file (which causes other side effects). You should be able to press the delete key within the MRU list of the Server Name dropdown in the Connect to Server dialog. This is documented in this Connect item and this blog post.

Note that if you have multiple entries for a single server name (e.g. one with Windows and one with SQL Auth), you won't be able to tell which one you're deleting.

share|improve this answer

For SQL Server 2012 Management Studio, this file has moved. It is now located at:

C:\Users\<username>\AppData\Roaming\Microsoft\
    SQL Server Management Studio\11.0\SqlStudio.bin
share|improve this answer

Over on this duplicate question @arcticdev posted some code that will get rid of individual entries (as opposed to all entries being delete the bin file). I have wrapped it in a very ugly UI and put it here: http://ssmsmru.codeplex.com/

share|improve this answer
This tool is very handy, thank you sir. – Vinzz Dec 12 '12 at 9:12

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

DEL /S SqlStudio.bin
share|improve this answer

For Windows Vista and SQL Server 2005,

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

%UserProfile%\Microsoft\Microsoft SQL Server\90\Tools\Shell\mru.dat
share|improve this answer

In SSMS 2012 there is a documented way to delete the server name from the "Connect to Server" dialog. Now, we can remove the server name by selecting it in the dialog and pressing DELETE.

share|improve this answer

For Microsoft SQL Server 2008

For clear all "Server Name" credentials in Connect to Server Dialog, follow below steps.

  1. Before deleting SqlStudio.bin file Close "Microsoft SQL Server Management Studio".

  2. C:\Documents and Settings\\Application Data\Microsoft\Microsoft SQL Server\100\Tools\Shell

  3. You find SqlStudio.bin file

Delete this file

  1. Finally open "Microsoft SQL Server Management Studio" and all the "Server Name" credentials are cleared.
share|improve this answer

protected by Community Jan 29 at 15:51

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.