简体   繁体   中英

Server name for SQL Server Management Studio 17.1

How do I find the server name for "SQL Server Management Studio 17.1", downloaded at https://docs.microsoft.com/en-us/sql/ssms/download-sql-server-management-studio-ssms

Thank you.

Please refer to this link to know what SQL Server Management Studio is:

SQL Server Management Studio (SSMS) is an integrated environment for managing any SQL infrastructure. Use SSMS to access, configure, manage, administer, and develop all components of SQL Server, Azure SQL Database, and SQL Data Warehouse. SSMS provides a single comprehensive utility that combines a broad group of graphical tools with a number of rich script editors to provide access to SQL Server for developers and database administrators [...].

You are confusing the management studio with an effective database engine. You use the management studio to connect to one or more SQL Server databases. At that point, you can then access, configure, manage, administer, and develop all components of a SQL Server database.


Suppose you have SSMS and connect to a SQL Server instance. You can then query a database on the SQL Server instance with ad-hoc queries. One such query could be

SELECT @@SERVERNAME

which would return the server name of the SQL Server instance .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM