Search
 
SCRIPT & CODE EXAMPLE
 

SQL

sql server check port number

USE master
GO
xp_readerrorlog 0, 1, N'Server is listening on' 
GO

#LogDate	ProcessInfo	Text
#...		Server		Server is listening on [ ::1 <ipv6> 1434].
#2..		Server		Server is listening on [ 127.0.0.1 <ipv4> 1434].
Comment

sql server port number

By default SQL Server listens on TCP port number 1433, but for named instances the TCP port is dynamically configured. There are several options available to get the listening port for a SQL Server named instance.
Comment

PREVIOUS NEXT
Code Example
Sql :: mysql count words 
Sql :: oracle create schema 
Sql :: how to get all table names in sql query 
Sql :: mysql loop insert 
Sql :: postgres connection string 
Sql :: ver usuarios mysql 
Sql :: sql try catch 
Sql :: how to check data type in sql server 
Sql :: query to check cpu utilization in oracle database 
Sql :: add constraint fk 
Sql :: mysql format date 
Sql :: show structure of table in sql 
Sql :: having count greater than 1 mysql 
Sql :: sqlite show columns in table 
Sql :: sql sum if 
Sql :: cross schema query oracle 2 users 
Sql :: installing mysql on fedora 
Sql :: dirinfo.name my snippets in stored procedure 
Sql :: oracle list datafiles in tablespace 
Sql :: role does not exist psql 
Sql :: hw to delete a procedure in pl sql 
Sql :: oracle plan hash value 
Sql :: mysql show data from table 
Sql :: how to describe a table in sqlite3 
Sql :: helptext in sql 
Sql :: group concat with separator 
Sql :: select statement to print longest name 
Sql :: finding duplicate rows mysql 
Sql :: mysql number format 
Sql :: create table mysql 
ADD CONTENT
Topic
Content
Source link
Name
2+8 =