|
|
|
|
|
by dandermotj
3160 days ago
|
|
Sparse heterogeneous data is often the type of data stored in NoSQL dbs. Modelled in a relational way, this produces many tables with many NULL fields, while keeping it in a key value format is neat and tidy. I'd recommend the paper What Goes Around Comes Around[1], the first paper in Readings in Database Systems[2] [1] https://scholar.google.com/scholar?cluster=73661829057771494...
[2]redbook.io |
|
I still can't imagine what sparse heterogeneous data exists in the world that makes sense to store. Any type of querying or processing requires some kind of structure (even if implicit in the code) which you can just put in different table structures.
You have to make sense of data to process it and that kind of implies a structure, doesn't it? Am I missing some obvious example of heterogeneous data?