Microsoft Dynamics 365 via MSSQL
Microsoft Dynamics 365 is a comprehensive suite of cloud-based business applications developed by Microsoft. It combines customer relationship management (CRM) and enterprise resource planning (ERP) tools into a unified platform, offering businesses a wide range of applications to manage various aspects of their operations.
We incorporate a deep integration with the system's raw data layer via a MSSQL connection.
Features
Feature name | Supported | |
---|---|---|
Column Hashing | True | Column level |
Blocking | True | Column level |
Incremental | True | Merge, Append |
Custom data | True | |
History | False | |
ReSync | True | Table level |
Templates | False |
π§ Setup Guide
Microsoft Dynamics 365 uses a MSSQL database as the primary backend storage mechanism. By setting up an ELT sync directly with the database, we are able to achieve faster and more robust ELT with deep access to the raw data.
For integrating with Microsoft Dynamics 365, follow the MSSQL connector's setup steps:
Read replicas
With high throughput systems, running a high frequency sync with a production database can put unnecessary load onto the running services. One mitigation technique is to create a read replica.
Whitelist Weld's IP pool
Requests from Weld will always come from the following IP pool:
3.64.84.139
3.65.119.169
35.156.133.78
Make sure to whitelist all three of these IP's within your network policies, SSH gateway server or the DB itself. If any updates to the list are ever scheduled to happen, you will be contacted by Weld via email.
Step 1 - Get credentials to setup the connection
From your MySQL Database, access and paste the required fields:
- Name (The name you want to refer to regarding this connection in the Weld app)
- Host (IP Address of your server)
- Database (Name of the database you want to connect to)
The host can be found using SQL commands:
select @@hostname;
show variables where Variable_name like '%host%';
Furthermore, add the port, name and your Weld username and password if desired. You can also connect through an SSH Tunnel.
Step 2 - Data To Sync
Tables can always be updated in the configuration settings of the sync.
- Select the tables you wish to include in the sync.
You can view the schema, remove columns or hash sensitive information. - Update Sync mode:
By default the MSSQL connector is set to run always full syncs. To optimize the sync time and reduce processing overhead on your MSSQL server we recommend for you to set up the syncs to run incrementally.
We currently support both Merge and Append mode for incremental syncs.
Merge
To have your table running incrementally using the merge configuration you need a table primary key and a cursor timestamp (updated_at
is preferred).
When a sync is run, Weld will select only the new or changed rows since the last update.
Append
If a row updated_at
timestamp is not available on the table then another option is to run an incremental sync using append mode. Append mode uses cursor to keep track of how far the sync got on the last run. It will use that cursor to append new entries at the end of the table on the next run.
Append is not widely used as it does not capture updates in the previous rows
Full Sync at Midnight
A limitation of both Merge and Append modes is that they do not capture deleted rows. If you expect rows to be deleted often from your tables then you can set a table to run a full sync at midnight which will remove those deleted rows.
Step 3 - Configure Sync
- Select how often you would like the data to sync.
- Provide a unique destination table name.
Weld will take over from here and commence syncing data from your MSSQL database.