4

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.

Community
  • 1
  • 1
ZVenue
  • 4,967
  • 16
  • 61
  • 92

2 Answers2

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
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