Can I use a named instance in the SQL Server integration?

이 페이지는 아직 한국어로 제공되지 않으며 번역 작업 중입니다. 번역에 관한 질문이나 의견이 있으시면 언제든지 저희에게 연락해 주십시오.

When connecting to a default instance in SQL Server, users specify the host name with the port (1433 by default) as the host value in the sqlserver.yaml file. When troubleshooting connection issues with SQL Server, determine whether you are connecting to a default instance or a named instance. Named instances can be connected using the $SERVER$INSTANCE_NAME syntax, but only if the SQL Server Browser service is enabled since this service provides the port the instance is on.

Here are the docs from Microsoft with more about the SQL Server Browser service:

https://technet.microsoft.com/en-us/library/ms181087(v=sql.105).aspx#Anchor_2

The SQL Server Browser service is required to use named instances and is disabled by default. Datadog recommends the approval of a system admin before enabling this service.

Once the SQL Server Browser service has been enabled, you can configure the sqlserver.yaml file to connect to a named instance by designating the named instance in the host value. For example:

instances:
  - host: $SERVER\$INSTANCENAME