Using MSSQL Connector in ETL pipeline
The following examples shows how the MSSQL connector can be used:
The MSSQL connector as source and an entity is the destination.
The MSSQL connector as a destination and an entity is the source.
Requirements
For both the examples below, the following is need to be created:
Create an Entity with the name TEST_MSSQL_Entity with the following fields:
customer_id
asinteger
and is thePrimary Key
customer_name
asstring
customer_email
asstring
Active_status
asboolean
Ensure data is added to the entity.
2. MSSQL table with columns to be mapped to the entity:
customer_id
asinteger
customer_name
asvarchar
customer_email
asvarchar
Active_status
asbit
3. Establish connection through MSSQL connector. (click here to see steps for setting up MSSQL connector)
Last updated