问题描述
我正在从事的项目需要MongoDB和SQL Server之间的数据同步,那么最佳方法是什么?此同步应由MongoDB端处理; MongoDB是否支持作业调度?
The project in which I am working requires synchronization of data between MongoDB and SQL Server, so what is the best way for it? This synchronization should be handled by MongoDB side; does MongoDB support job scheduling?
我是MongoDB的新手,我想知道几件事.我知道这不是RDBMS,但如果可能的话,那怎么办?
I am new in MongoDB and I want to know few things about it. I know it is not an RDBMS but in case it is possible, then how?
就像我们可以在Oracle中编写程序一样,我们可以在MongoDB中编写程序.我的意思是直接在MongoDB中,如果没有,那么可以使用哪种客户端语言?
Like we can write program in Oracle can we write in MongoDB. I mean directly in MongoDB, if no then which client side language can used?
推荐答案
正如@Vasanth所说,MongoDB没有本机作业管理.
As @Vasanth said, MongoDB has no native job management.
关于哪种客户端语言:完全由您决定.
As to which client side language: well that's entirely upto you.
您总是可以获取预构建的复制器,例如: http://code.google. com/p/tungsten-replicator/可能为您完成工作.
You can always get get a prebuilt replicator like: http://code.google.com/p/tungsten-replicator/ that might do the job for you.
作为进一步参考,该问题可能对您有所帮助: https://softwareengineering.stackexchange.com/questions/125980/can-sql-server-and-mongo-be-used-together
As further reference, this question maybe of help to you: https://softwareengineering.stackexchange.com/questions/125980/can-sql-server-and-mongo-be-used-together
这篇关于MongoDB中的作业调度的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!