Business Intelligence and NoSQL Business Intelligence and NoSQL mongodb mongodb

Business Intelligence and NoSQL


Do BI tools typically support non-SQL databases as well?

No. And they really can't. Non-SQL databases are very different from each other. NoSQL is really just a loose set of "things not SQL".

However, the problem you're going to face is a classic one. Most NoSQL database are run under the concept that you can "batch" and "output" the reporting that you're planning to do. (typically this means map-reduce)

So if you want to use common BI tools, you simply have to "bridge the gap".

MongoDB supports a CSV export that can then be imported into a relational DB for analysis. For some complex queries, you'll likely need to write "map-reduce" queries and then export that data. Obviously, you'll have to write a couple of export / import scripts.

But it's quite possible to provide BI reporting and still use MongoDB as the primary store of data. You'll still need an RDBMS running for the BI suite. But it's unlikely to require much hardware as it's just used for reporting and not for live data.


MongoDB is very nice but it isn't flexible. The developer defines the relations between the entities when developing the application. However business intellegence means that people with domain knowledge can look for new relations between entities. Data can get new meaning that was unknown when the developer developed the structure of the tables/collections.


Since 10 years this question was raised, a lot has changed in the BI landscape. BI tools do read from MongoDB data source by flattening the json response into a row format.