Is there a way to convert/migrate NoSQL database data(Raven,Mongo,Couch ) into SQL server data? Since some NoSQL databases lack reporting tools, would be easier if I could move the data to SQL and work off that directly (just for data analysis, querying, reporting needs).Comments appreciated.
Asked
Active
Viewed 2,696 times
2 Answers
8
With Ravendb you have the possibility to replicate an index to a table on a SQL server. See http://ravendb.net/bundles/index-replication
In common you have to 'map' your schema-less data to the database-schema.

ccellar
- 10,326
- 2
- 38
- 56
-
1This might also be of interest; http://ayende.com/blog/4637/ravendb-replicating-to-a-relational-database – Joshua Hayes Aug 05 '11 at 09:54
0
Use some exchange format like CSV
. Most database systems support CSV
export/import through some command line tools. Otherwise you have to write your own migration script.

Bernhard
- 4,855
- 5
- 39
- 70