可以将 sqlServer 视图同步到 noSQL 数据库(如 MongoDB 或 RavenDB)吗?
出于性能原因,我希望将复杂的 sqlserver 视图引入到像 mongoDB 这样的 documentDB 中。是否可以将两者同步在一起?或将每个记录/文档从视图获取到 documentDB 的最佳方法是什么。
这仅适用于在网络上直接查看数据。没有更新、删除或插入。
*想要了解 documentDB,这将是一个简单的实施项目。
I'm looking to get a complex sqlserver view into a documentDB like mongoDB for performance reasons. Is it possible to sync the two together? or What's the best approach to get each record/document from the view into the documentDB.
This is for straight up data viewing on the web only. no updates, deletes or inserts.
*wanting to learn about documentDBs, this would be a simple project for implementation.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于源信息是关系数据库,因此您需要在更新行时进行某种更新过程。
您可以通过应用程序或使用某种触发器来执行此操作。
您从数据库中获取所有必需的信息,并将其以优化的形式写入 RavenDB 中。
说实话,差不多就是这样。
Since the source information is the relational database, you need some sort of an update process that happens when a row is updated.
You can do that either via your application, or using some sort of a trigger.
You get all of the required information from the database, and write that in optimized form inside RavenDB.
That is pretty much it, to tell you the truth.