Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am curious to know which type of database should be used, above which an BI tool is to be built. By "which type" I basically mean here is. Relational databases or newer non-relational databases. Now the types of operations that BI tool will do are:

reporting, online analytical processing, analytics, data mining, process mining, complex event processing, business performance management, benchmarking, text mining, predictive analytics and prescriptive analytics.(From Wikipedia)

Please just don't name the DB you suggest I need few strong reason behind choice, or any reliable reference to an argument will be very helpful.

I know the fact that BI tool is to be built for client so which ever DB client is using I have to provide my solution over it.

share|improve this question
1  
Why have you added the java, mysql and oracle tags? – ypercube Sep 15 '12 at 21:40
@ypercube Honestly for ONLY REASON is most of most users less often check for other tags even though they have knowledge of databases,to get more view. I had to add those as well. – Amandeep Jiddewar Sep 15 '12 at 21:44
what's your budget? – tbone Sep 16 '12 at 1:02
Microsoft Access, for sure – Neil McGuigan Sep 16 '12 at 18:53

closed as not constructive by jonearles, DCoder, APC, alfasin, martin clayton Sep 16 '12 at 7:50

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

If you are going to use an existing BI tool to build a BI solution, most of the tools in the market support relational databases primarily. There are support for non-relational data sources, but the mileage may vary from one tool to another.

If you are planning to build a BI tool from scratch, consider to what extent of capabilities are required (as quoted from Wikipedia).

Popular relational databases may not support all data mining algorithms, predictive analytics algorithms, complex event processing etc. However, if you plan to offload such operations to a batch process (or ETL) and use the database to store the results, relational databases are still excellent choices.

Relational database come with rigid schema too. If the solution requires flexible schema/data structures, non-relational database may be a better choice; especially with the availability and maturity of today's supporting frameworks.

Finally, it is also about data volume, management, maintenance and costs. Today, there are relational databases that can store 100s of terabytes of data. This would be a choice for enterprises who may want to extend their existing solutions or migrate their solutions with minimal impact. Non-relational data sources are still maturing in their offerings for data management and support operations. Consider cost per storage unit (terabyte/petabyte) as well in the final decision.

share|improve this answer

You apparently do not understand BI, data or databases. I predict your client is in for a disappointment.

Because the choice of database is dependent on two things:

  1. the type of data you want to store
  2. the type of operation you want to execute

Now, you've regurgitated a list of data analysis techniques from Wikipedia but that's only half the picture.

Some of them clearly map to a specific database type (you must have an OLAP cube for online analytical processing) or none at all (CEP generally operates on messages in flight rather than at rest).

But you can run most of those operations (reports, data mining) against any sort of database. The kind of data store you choose depends on the kind of data you want to store.

Of course it's more complicated than that. You might need to have the same data in a schemaless NdSQL data-store for some purposes and map it to a generic entity in an RDBMS for others. In fact the same record could be a message run through a CEP engine, batched up in a M/R job through Hadoop, aggregated into an RDBMS and then stuck in an OLAP cube.

And that's why BI architects charge so much.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.