Workflow Database Configuration in netflow.cfg

To configure workflow database from AgilePoint Server, do the procedure in this topic.

The workflow database is configured in the <database> node of the AgilePoint Server configuration file netflow.cfg.

Prerequisites

Good to Know

How to Start

  1. On the AgilePoint Server machine, in a text editor, open the file netflow.cfg.

XML Node Format

<database
    Vendor="[database technology]"
    connectionString="[connection string of the workflow database]"
/>

XML Node Example

<database
    Vendor="MSSQLDatabase"
    connectionString="application name=AgilePoint Server; 
                                  connection lifetime=5;
                                  min pool size=10;
                                  server=DESKTOP-GM461C9;
                                  database=APDB;
                                  trusted_Connection=yes"
/>

Attributes

Field NameDefinition

Vendor

Function:
Specifies the database technology to store your data.
Accepted Values:
  • Microsoft SQL Server
  • MySQL
  • Oracle
Default Value:
Example:
<notification Vendor="MSSQLDatabase" ... />

Connection String

Function:
Specifies the connection string to connect to your workflow database.
Accepted Values:
A valid connection string.
Default Value:
None
Example:
<notification connectionString="application name=AgilePoint Server; connection lifetime=5; min pool size=10; server=DESKTOP-GM461C9; database=APDB; trusted_Connection=yes"/>

Related Topics