Skip to content
This repository has been archived by the owner on Apr 23, 2020. It is now read-only.

Update README.md #30

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,14 @@ Azure SQL

----

To determine SQL SERVER Instance
SELECT SERVERPROPERTY('ComputerNamePhysicalNetBIOS') AS ServerName,
@@SERVERNAME AS FullInstanceName, @@SERVICENAME AS InstanceName,
local_net_address AS InstanceIPAddress, local_tcp_port AS InstancePort
FROM sys.dm_exec_connections WHERE session_id = @@spid

If InstanceName is like MSSQLSERVER then server syntax should be Server={FullInstanceName};Database=master;

## Support

Find a bug? Post it to [http://support.newrelic.com](http://support.newrelic.com).
Expand Down