Abhishek Pansotra
Abhishek Pansotra

Reputation: 1017

Connection -MongoDB & SQL Server

I need to create a connection between ##MongoDB## and ##SQL Server## where I want to replicate a subset of my Database from SQL Server into MongoDB. Can anyone suggest for feasibility of the same and how ?

Right now I am using symmetricDS for the replication but unable to...

Please suggest if symmetricDS is able to serve for this purpose.

Upvotes: 1

Views: 3435

Answers (2)

Abhishek Pansotra
Abhishek Pansotra

Reputation: 1017

Got an easy way around for the Data Exchange from SQL to MongoDB using:

  1. SQLtoMongo C# Tool
  2. KNIME Analytics Platform (way easy to implement - Opensource)

But still looking for something with triggers to easily replicate the things.

Upvotes: 1

chenson42
chenson42

Reputation: 1108

Here is how you target MongoDB:

http://www.symmetricds.org/doc/3.8/html/user-guide.html#_mongodb

If you need more flexibility than straight table to table mapping, then you would write your own data loader using the MongoDatabaseWriter as a pattern.

https://github.com/JumpMind/symmetric-ds/tree/0c5cc1c24b42a64405f4b79c3cb6b594a35467f2/symmetric-client/src/main/java/org/jumpmind/symmetric/io

Upvotes: 4

Related Questions