SHARE
Facebook X Pinterest WhatsApp

Find TCP/IP Sockets Net-Libraries port number used by SQL Server 2000

Jan 20, 2005

When a
DBA is managing many different SQL Server boxes, it can be a tedious job to
find the port numbers used by all of the SQL Servers. In this article, I would like
to discuss several methods for finding the Port numbers used by SQL Server.

Method 1

In method
one, we are going to take advantage of the MS-DOS batch file, OSQL utility, and
the extended stored procedure "xp_regread".

Method 1
can be used only if the SQL Server service in the listed machines is up and
running and the SQL Login used in the Findport.bat has permission to access SQL
server and has permission to query the registry of that machine.

Step 1

Create
Folder C:\Findport, [Refer to Fig 1.0] and create C:\Findport\servers.txt. List
all of the server names and the named instance names in the text file, as shown
below.

SQL
MyComp
MyComp\Blonde

I have published
two different articles on how to find all of the SQL Servers on the network.
You can use those articles to publish this servers.txt file. Please refer to Scanning
the network for SQL Server for a range of IP addresses
and Scanning
the network for SQL Server
.



[Fig 1.0]

Step 2

Create
C:\Findport\port.sql as shown below

set nocount on
DECLARE @test varchar(20), @key varchar(100)
if charindex(‘\’,@@servername,0) <>0
begin
set @key = ‘SOFTWARE\MICROSOFT\Microsoft SQL Server\’
  +@@servicename+’\MSSQLServer\Supersocketnetlib\TCP’
end
else
begin
set @key = ‘SOFTWARE\MICROSOFT\MSSQLServer\MSSQLServer\Supersocketnetlib\TCP’
end
EXEC master..xp_regread @rootkey=’HKEY_LOCAL_MACHINE’,
 @key=@key,@value_name=’Tcpport’,@value=@test OUTPUT
SELECT ‘Server Name: ‘+@@servername + ‘ Port Number:’+convert(varchar(10),@test)

Download port.sql.

Step 3


REM Type: Batch File
REM Created by: MAK
REM Contact: mak_999@yahoo.com
REM Date created: Jan 1, 2005
REM Execute osql Servers.txt
for /f “tokens=1,2,3%%i in (C:\Findport\Servers.txt)
  do OSQL -S%%i -t0 -Usa -Psa -dMASTER -ic:\Findport\PORT.sql

(Please
change -Usa and -Psa to your login and
password according to your environment or remove -Usa -Psa and add -E to use windows
authentication).

Download Findport.bat_

Step 4

Run the
batch file as shown below. [Refer Fig 1.1]



[Fig 1.1]

C:\Findport\findport.bat > C:\Findport\Findport.log

Step 5

Open the
c:\ Findport\Findport.log file. The result should look like that shown below.

C:\findport>REM Type: Batch File
C:\findport>REM Created by: MAK
C:\findport>REM Contact: mak_999@yahoo.com
C:\findport>REM Date created: Jan 1, 2005
C:\findport>REM Execute osql Servers.txt
C:\findport>for /F “tokens=1,2,3%i in (C:\Findport\Servers.txt)
  do OSQL -S%i -t0 -Usa -Psa -dMASTER -ic:\Findport\PORT.sql
C:\findport>OSQL -SSQL -t0 -Usa -Psa -dMASTER -ic:\Findport\PORT.sql
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13>
	——————————————————————————
	———————————————————————–
	—————
 Server Name: SQL Port Number:2433
C:\findport>OSQL -SMyComp -t0 -Usa -Psa -dMASTER -ic:\Findport\PORT.sql
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13>
	——————————————————————————
	———————————————————————–
	—————
 Server Name: MYCOMP Port Number:1433
C:\findport>OSQL -SMyComp\Blonde -t0 -Usa -Psa -dMASTER -ic:\Findport\PORT.sql
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13>
	——————————————————————————
	———————————————————————–
	—————
 Server Name: MYCOMP\BLONDE Port Number:2433

Recommended for you...

Best Online Courses to Learn SQL
Ronnie Payne
Sep 23, 2022
Best Courses for Database Administrators
Ronnie Payne
Jul 22, 2022
Tip 74 – Changing Cost Threshold for Parallelism
Gregory Larsen
Feb 24, 2021
How Many Databases Can You Name?
Brad Jones
May 11, 2020
Database Journal Logo

DatabaseJournal.com publishes relevant, up-to-date and pragmatic articles on the use of database hardware and management tools and serves as a forum for professional knowledge about proprietary, open source and cloud-based databases--foundational technology for all IT systems. We publish insightful articles about new products, best practices and trends; readers help each other out on various database questions and problems. Database management systems (DBMS) and database security processes are also key areas of focus at DatabaseJournal.com.

Property of TechnologyAdvice. © 2025 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.