Microsoft SQL Server
This page describes how to create and maintain connections to your SQL Server database.
Before ingesting your data from Microsoft SQL Server, you must establish a connection to your database.
Create a SQL Server connection
Simple example
A SQL Server connection can be created as follows:
Alter a SQL Server connection
Some connection options are considered mutable, meaning that in some cases, you can run a SQL command to alter an existing SQL Server connection rather than create a new one.
To change the database you are connecting to but keep everything else the same without having to create an entirely new connection, you can run the following command:
Drop a SQL Server connection
If you no longer need a connection you can easily drop it with the following SQL command:
However, note that if existing tables or jobs depend upon the connection, the connection cannot be dropped.
Learn More
Last updated