Folks:I have 2 instances running on 1 server and I am trying to find the Port Number for each instance using the below script and it displays me as NULL. I am able to connect to the server using Management Studio without any problems. Any Idea why the 2 SQL Instances are configured as NULL and I am still able to connect?DECLARE @tcp_port nvarchar(5)EXEC xp_regread@rootkey = 'HKEY_LOCAL_MACHINE',@key = 'SOFTWARE\MICROSOFT\MSSQLSERVER\MSSQLSERVER\SUPERSOCKETNETLIB\TCP',@value_name = 'TcpPort',@value = @tcp_port OUTPUTselect @tcp_port