Skip to content

SQL Server Database Agent

Overview

An SQL Server agent encapsulates the connection details to a single SQL Server instance.

Usage

The SQL Server agent is used by the following connectors:

Configuration

In addition to the common agent configuration shared by all agents, the SQL Server agent requires the following by way of configuration:

NameSupports ReferencesDescription
Use Standard FieldsnoWhether to enter standard connection fields or configure the connection string directly.
Enable TransactionsyesWhether Microsoft Distributed Transaction Coordinator is used to manage transactions.
Operation TimeoutyesThe amount of time allowed for operations performed by the agent.
Connection StringyesA SQL Server database connection string used to describe the connection mechanism to the SQL Server database instance. (See Syntax and Sql Connection String for details).
ServernoThe server name hosting the SQL Server database.
Database NamenoThe name of the database to manage.
Authentication TypenoThe type of authentication mechanism to use when communicating with the SQL Server instance.
UsernamenoThe SQL Username to authenticate with.
Password and Confirmation PasswordnoThe password corresponding to the selected SQL Server username.

image

Authentication Types

Authentication TypeDescription
WindowsConnects to the target system with the credentials of the service account. This can only be used for local connections.
SQLSQL: Connects to the target system using SQL authentication. This can be used for both local and remote connections.