ssms – 有没有办法为MS SQL Server Management Studio设置数据库的快捷方式

前端之家收集整理的这篇文章主要介绍了ssms – 有没有办法为MS SQL Server Management Studio设置数据库的快捷方式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想要一个我的数据库服务器列表(我是开发人员),我目前有一个RDP文件列表,用于我连接的不同机器. sql Server Management Studio中是否有类似的功能可以帮助我直接进入我需要去的地方而不必等待登录屏幕弹出并问我想要哪个服务器?

解决方法

是的您可以使用以下命令:
ssms.exe -S SERVERNAME -d DATABASENAME -E

您可以使用run运行它,也可以将其放入.txt文件并将扩展名更改为.bat并运行它.

运行smss.exe /?可以找到更多信息:

Usage:
ssms.exe [-S server_name[\instance_name]] [-d database] [-U user] [-P password] [-E] [file_name[,file_name]] [/?]

    [-S The name of the sql Server instance to which to connect]
    [-d The name of the sql Server database to which to connect]
    [-E]    Use Windows Authentication to login to sql Server
    [-U The name of the sql Server login with which to connect]
    [-P The password associated with the login]
    [file_name[,file_name]] names of files to load
    [-nosplash] Supress splash screen
    [/?]    Displays this usage information
原文链接:https://www.f2er.com/mssql/80550.html

猜你在找的MsSQL相关文章