Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
303 views
in Technique[技术] by (71.8m points)

rdbms - Reasonable Export of Relational to Non-Relational Data

We have different products that rely on relational databases for various reasons, basically the transactional nature of the operations (atomicity, consistency, etc.). This is not going to change any time soon.

Given this scenario, are there any possible justifications to export the data to a NoSQL solution? Maybe Datawarehousing, Analytics, etc.

Any comments are welcome.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

"Data" is just a vague generality without a data structure. "Relational" means the data structure is relations/tables with generic queries. (Not automatically interleaved execution of semantically atomic concurrent transactions, which just happens to become feasible given relational set-at-a-time operators.) Need for specialized data structures or queries suggests augmenting a relational system interface or implementation. "NoSQL" is a catch-all for all sorts of such systems with special-case abstractions and/or implementations. But they don't need to be non-relational in interface. They just need to be not what current "relational" DBMSs provide. Given that they exist, one can reasonably export to (or import from) them when needed.

Unfortunately the relational model is not generally understood (including by "relational" DBMSs), so instead these systems reject what they could simply extend.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...