I've seen many articles about database being flexible and that makes it advantageous. But what makes it like that? What does database flexibility really give, couldn't find any particular info that would explain exactly that. Could you please explain that to me? Let say what does flexibility mean amongst NoSQL, SQL and NewSQL?
Asked
Active
Viewed 3,795 times
0
-
Can you link to one or three of these articles? – Thilo Jun 18 '16 at 11:57
-
http://dataconomy.com/sql-vs-nosql-vs-newsql-finding-the-right-solution/ – iWanabi Jun 18 '16 at 12:44
-
its kinda messy how they talk about it and I can't get the whole picture of it. Need someone to chew this up for me – iWanabi Jun 18 '16 at 12:44
1 Answers
1
The article in your comment equates flexibility with lack of schema. Absence of schema gives more flexibility when writing - you're not constrained to a predefined structure and can store complex data without decomposing it into ground facts. However, it means less flexibility when reading. Regular and consistent data supports more operations without conditional logic, and simple facts can be more easily combined into any required structure.

reaanb
- 9,806
- 2
- 23
- 37