Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有相同的文档集合,在两个不同的数据库中找到。我想总结两个数据库的文件。怎么做最容易?我需要这些集合的总和,这些集合是不相交的。
我假设通过使用 mongoimport、mongorestore 但您建议如何处理该问题?
我会用 mongodump 来做,是的。
mongodump -d dbA
这将在dump/dbA. 现在运行此命令将它们导入另一个数据库。
dump/dbA
mongorestore -d dbB dump/dbA
您可以运行mongorestore --help以获取有关其参数的更多信息。
mongorestore --help