Why use NoSQL over Materialized Views?

Posted by JustinT on Stack Overflow See other posts from Stack Overflow or by JustinT
Published on 2010-04-09T13:45:12Z Indexed on 2010/04/10 10:53 UTC
Read the original article Hit count: 374

There has been a lot of talk recently about NoSQL.

The #1 reason why I hear people use NoSQL is because they start to de-normalize their DBMS data so much so, to increase performance, that they end up with just one table with all of their data within that single table.

With Materialized Views however, you can keep your data normalized, yet have it stored as a single table view for the same reasons why you'd use NoSQL.

As such, why would someone use NoSQL over Materialized Views?

© Stack Overflow or respective owner

Related posts about rdbms

Related posts about database