Comment on page
Microsoft SQL Server
This page describes how to create a connection to Microsoft SQL Server using a SQL command.
To ingest data from Microsoft SQL Server using Upsolver, you must first create a connection that provides the appropriate credentials to access your database.
CREATE MSSQL CONNECTION <connection_identifier>
CONNECTION_STRING = '<connection_string>'
USER_NAME = 'your username'
PASSWORD = 'your password'
[ COMMENT = '<comment>' ]
Type:
text
The connection string to use when connecting to the database. This string can be copied directly from your SQL Server. The connection string should include the database name at the end of the string.
Type:
text
The user to authenticate to the database with.
Type:
text
The password for the user.
Type:
text
(Optional) A description or comment regarding this connection.
CREATE MSSQL CONNECTION my_sqlserver_connection
CONNECTION_STRING = 'jdbc:sqlserver://ms-sqlserver-1.myendpoint.us-east-1.rds.amazonaws.com:1433;DatabaseName=mydb'
USER_NAME = 'your username'
PASSWORD = 'your password'
COMMENT = 'Connection to SQL Server';
Last modified 3mo ago