Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Raven DB to SQL server (NoSQL DB to Relational DB)

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.

like image 755
ZVenue Avatar asked Feb 24 '23 04:02

ZVenue


1 Answers

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.

like image 77
ccellar Avatar answered Feb 28 '23 06:02

ccellar