Microsoft SQL Server

Follow these steps to use Microsoft SQL Server as your source.

Step 1 - Connect to SQL Server

Create a new connection

In the Connection String textbox, enter your connection string in the following format:

jdbc:sqlserver://HOST;DatabaseName=MyDb

where:

  • HOST - the hostname or IP address of the SQL Server instance you want to connect to, for example, ms-sqlserver-1.myendpoint.

  • DatabaseName - the name of the database you want to connect to. The above example uses MyDb; replace this with the name of the database you want to work with.

For further connection options, visit Microsoft SQL Server JDBC URI documentation.

Provide the Username and Password to authenticate to the database.

In the Name your connection field, type in the name for this connection. Please note this connection will be available to other users in your organization.

Use an existing connection

By default, if you have already created a connection, Upsolver selects Use an existing connection, and your SQL Server connection is populated in the list.

For organizations with multiple connections, select the source connection you want to use.

Step 2 - Select schemas, tables, and columns to ingest

There are two ways to replicate objects to the target:

  1. Manually select the schemas, tables, and columns.

  2. Use regular expressions to specify which tables are included and which columns are excluded.

The following examples show how to use a regular expression to include specific tables:

ExpressionResults

schema_name.*

Select all tables in the schema_name schema.

schema_name.users, schema_name.items

Select users and items tables in the schema_name schema.

schema_name.items_.*

Select all tables in the schema_name schema that start with items_.

By default, Upsolver ingests all columns in the tables that match the regular expression. Below are examples of regular expressions to exclude columns from included tables:

ExpressionResults

schema_name.users.address_.*

Select all columns starting with address_ in the users table in the schema_name schema.

schema_name.*.(.*_pii)

Select all columns ending in _pii across all tables in the schema_name schema.

Schema evolution

By default, new schemas, tables, and columns added after the job is launched, will be replicated to the target.

You can overwrite the default behavior and set specific behavior for newly created schemas, tables in a specific schema, or columns in a specific table.

Last updated