可以将 sqlServer 视图同步到 noSQL 数据库(如 MongoDB 或 RavenDB)吗?

发布于 2024-11-06 09:15:54 字数 189 浏览 10 评论 0原文

出于性能原因,我希望将复杂的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

迎风吟唱 2024-11-13 09:15:54

由于源信息是关系数据库,因此您需要在更新行时进行某种更新过程。
您可以通过应用程序或使用某种触发器来执行此操作。
您从数据库中获取所有必需的信息,并将其以优化的形式写入 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文