SQL Server
Microsoft SQL Server is a relational database management system developed by Microsoft that supports a wide variety of transaction processing, business intelligence and analytics applications in corporate IT environments.
Prerequisite credentials
You need a SQL Server account. Use the TCP/IP Properties (IP Addresses Tab) dialog box to configure the TCP/IP protocol options for a specific IP address. In case of restrictions, you need to add the IP address used by DQO to Allowed IP Addresses in SQL Server Network Policies.
Adding SQL Server connection using the graphical interface
- Go to Data Sources section and click + Add connection button in the upper left corner.
- Select SQL Server database type.
- Add connection settings.
| SQL Server connection settings | Property name in YAML configuration file | Description |
|--------------------------------|------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Connection name | | The name of the connection that will be created in DQO. This will also be the name of the folder where the connection configuration files are stored. The name of the connection must be unique and consist of alphanumeric characters. |
| Host | host | SQL Server host name. Supports also a ${SQLSERVER_HOST} configuration with a custom environment variable. |
| Port | port | SQL Server port name. The default port is 1433. Supports also a ${SQLSERVER_PORT} configuration with a custom environment variable. |
| Database | database | SQL Server database name. The value can be in the ${ENVIRONMENT_VARIABLE_NAME} format to use dynamic substitution. |
| User name | user | SQL Server user name. The value can be in the ${ENVIRONMENT_VARIABLE_NAME} format to use dynamic substitution. |
| Password | password | SQL Server database password. The value can be in the ${ENVIRONMENT_VARIABLE_NAME} format to use dynamic substitution. |
| Options | options | SQL Server connection 'options' initialization parameter. For example, setting this to -c statement_timeout=5min would set the statement timeout parameter for this session to 5 minutes. Supports also a ${SQLSERVER_OPTIONS} configuration with a custom environment variable. |
| Disable SSL encryption | disable_encryption | Disable SSL encryption parameter. The default value is false. You may need to disable encryption when SQL Server is started in Docker. |
| JDBC connection property | | Optional setting. DQO supports using JDBC driver to access SQL Server. [See the SQL Server documentation for JDBC connection parameter references.](https://learn.microsoft.com/en-us/sql/connect/jdbc/overview-of-the-jdbc-driver?view=sql-server-ver16). |
DQO allows you to dynamically replace properties in connection settings with environment variables. To use it, simply
change "clear text" to ${ENV_VAR} using the drop-down menu at the end of the variable entry field and type your variable.
For example:

To add optional JDBC connection properties just type the **JDBC connection property** and the **Value**. The value
can be in the ${ENVIRONMENT_VARIABLE_NAME} format to use dynamic substitution.
For example:

To remove the property click on the trash icon at the end of the input field.
- After filling in the connection settings, click the Test Connection button to test the connection.
- Click the Save connection button when the test is successful otherwise you can check the details of what went wrong.
-
Import the selected data resources (source schemas and tables) by clicking on the Import Tables button next to the name of the source schema from which you want to import tables.
-
Select the tables you want to import or import all tables using the buttons in the upper right corner.
Adding SQL Server connection using DQO Shell
To add a connection run the following command in DQO Shell.
Fill in the data you will be asked for.
Connection name (--name): connection1
Database provider type (--provider):
[ 1] bigquery
[ 2] snowflake
[ 3] postgresql
[ 4] redshift
[ 5] sqlserver
[ 6] mysql
[ 7] oracle
Please enter one of the [] values: 5
SQL Server host (--sqlserver-host)[${SQLSERVER_HOST}]: localhost
SQL Server port (--sqlserver-port) [${SQLSERVER_PORT}]: 1433
SQL Server database name (--sqlserver-database) [${SQLSERVER_DATABASE}]: TESTING
SQL Server user name (--sqlserver-user) [${SQLSERVER_USER}]: testing
SQL Server password (--sqlserver-password) [${SQLSERVER_PASSWORD}]: xxx
Connection connecton1 was successfully added.
Run 'table import -c=connection1' to import tables.
You can also run the command with parameters to add a connection in just a single step.
dqo> connection add --name=connection1
--provider=sqlserver
--sqlserver-host=localhost
--sqlserver-port=1433
--sqlserver-database=TESTING
--sqlserver-username=testing
--sqlserver-password=xxx
After adding connection run table import -c=connection1
to select schemas and import tables.
DQO will ask you to select the schema from which the tables will be imported.
You can also add the schema and table name as a parameter to import tables in just a single step.
DQO supports the use of the asterisk character * as a wildcard when selecting schemas and tables, which can substitute any number of characters. For example, use pub* to find all schema a name with a name starting with "pub". The * character can be used at the beginning, in the middle or at the end of the name.Connections configuration files
Connection configurations are stored in the YAML files in the ./sources
folder. The name of the connection is also
the name of the folder where the configuration file is stored.
Below is a sample YAML file showing an example configuration of the SQL Server data source connection.
apiVersion: dqo/v1
kind: source
spec:
provider_type: sqlserver
sqlserver:
host: localhost
port: 1433
database: TESTING
user: testing
password: xxx
properties:
lastUpdateCount: "false"
incident_grouping:
grouping_level: table_dimension_category
minimum_severity: warning
max_incident_length_days: 60
mute_for_days: 60