How To Find Sql Server Port Number From Management Studio?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
1. In SQL Server Management Studio, open a query window.
2. Execute the following query:
SELECT @@SERVERNAME AS ‘ServerName’,
CONNECTIONPROPERTY(‘localnetaddress’) AS ‘PortNumber’
3. The query will return the port number for the SQL Server instance.