简体   繁体   中英

Connect SQL Server to a “NoSQL” Database

I'm currently doing a business intelligence research about connecting Microsoft SQL Server to a nosql database.

My target is to import data from a nosql table to a relational DWH based on SQL Server.

I found the following approaches:

If somebody did something like this before or knows some kind of "best practices". It doesn't matter wich NoSQL system is used

NoSQL, by "definition", does not have a standard structure. So, depending on what NoSQL backend you are trying to import from, you will need some custom code to translate that into whatever structured format your data warehouse expects.

Your code does not have to generate XML; it could directly use a database connection (eg, JDBC, if you are using Java) to make SQL queries to insert the data.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM