Import data from CouchDB to Sql Server

1.8k views Asked by At

Is there a way to export data from couchDB to Sql Server ? We tried with SSiS using http connection manager, JSON component source etc. But the problem is that couchDB has some security and we can't retrieve data info. We tried installing their certificates no success.

Any other suggestions?

1

There are 1 answers

0
Ed Elliott On

CounchDB has a number of .net client libraries you can use. I would get that working in a console app and then just write that to a csv on the disk and use SSIS to import it.

If you don't want the additional step you could write a .net script source component that used the .net client to retrieve data but get it working in a console app first so you know it is good before bringing SSIS into the equation.

Getting started with CouchDb and c#:

https://wiki.apache.org/couchdb/Getting_started_with_C%23

ed