SQLServer删除登录记录用户名和密码
程序员文章站
2022-07-20 23:25:47
介绍: 作为一名开发人员都会知道我们做的项目都要用到数据库,数据库都需要账号和密码,然而问题来了,做的东西多了那些没用的账号和密码还在哪里纠缠着我们。所有我们不能忍了删除掉他。 网上很多都是2008的是删除方案,知道我看到了这篇:http://*.com/questions/ ......
介绍:
作为一名开发人员都会知道我们做的项目都要用到数据库,数据库都需要账号和密码,然而问题来了,做的东西多了那些没用的账号和密码还在哪里纠缠着我们。所有我们不能忍了删除掉他。
网上很多都是2008的是删除方案,知道我看到了这篇:http://*.com/questions/349668/removing-the-remembered-login-and-password-list-in-sql-server-management-studio
版本路径说明
SQL Server Management Studio 2016 delete the file C:\Users\%username%\AppData\Roaming\Microsoft\SQL Server Management Studio\13.0\SqlStudio.bin SQL Server Management Studio 2014 delete the file C:\Users\%username%\AppData\Roaming\Microsoft\SQL Server Management Studio\12.0\SqlStudio.bin SQL Server Management Studio 2012 delete the file C:\Users\%username%\AppData\Roaming\Microsoft\SQL Server Management Studio\11.0\SqlStudio.bin SQL Server Management Studio 2008 delete the file C:\Users\%username%\AppData\Roaming\Microsoft\Microsoft SQL Server\100\Tools\Shell\SqlStudio.bin SQL Server Management Studio 2005 delete the file – same as above answer but the Vista path. C:\Users\%username%\AppData\Roaming\Microsoft\Microsoft SQL Server\90\Tools\Shell\mru.dat
注意:AppData
是一个隐藏文件夹。您需要在资源管理器中显示隐藏的文件夹。
上面只是简述了所对应版本需要删除的文件路径。还是需要我们手动去找到然后删除对应文件的。
当然我们也可以不这样那就复制下面的路径吧。
SQL Server Management Studio 2016 :%AppData%\Microsoft\SQL Server Management Studio\12.0\
SQL Server Management Studio 2014 :%AppData%\Microsoft\SQL Server Management Studio\12.0\
SQL Server Management Studio 2012 :%AppData%\Microsoft\SQL Server Management Studio\11.0\
SQL Server Management Studio 2008 :%AppData%\Microsoft\Microsoft SQL Server\100\Tools\Shell\
SQL Server Management Studio 2005 :%AppData%\Microsoft\Microsoft SQL Server\100\Tools\Shell\
这样找到对应版本数据库,直接复制版本后面的路径,然后在根据第一个代码路径找到需要删除的文件名即可。这样是不是很爽啊。