如何使用mongodump只导出指定的集合
How to use mongodump to export specified collections only
我查看了 mongodump 文档,发现了这个:
--collection=<collection>, -c=<collection>
Specifies a collection to backup. If you do not specify a collection, this option copies all collections in the specified database or instance to the dump files.
这指定了一个特定的集合。我想导出多个集合,但不是全部。有没有办法指定我要导出的所有集合?
您不能指定要导出的所有集合,但您可以使用 --excludeCollection
指定不导出哪些集合,如下所示:
mongodump --db=test --excludeCollection=users --excludeCollection=salaries
它在文档中列出。
我查看了 mongodump 文档,发现了这个:
--collection=<collection>, -c=<collection>
Specifies a collection to backup. If you do not specify a collection, this option copies all collections in the specified database or instance to the dump files.
这指定了一个特定的集合。我想导出多个集合,但不是全部。有没有办法指定我要导出的所有集合?
您不能指定要导出的所有集合,但您可以使用 --excludeCollection
指定不导出哪些集合,如下所示:
mongodump --db=test --excludeCollection=users --excludeCollection=salaries
它在文档中列出。