作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想将数据导入到几个集合中。我就是这样做的
$> mongoimport -d myDB -c myCollection --file file.json
问题是这只有在集合为空时才有效,否则我会得到像
这样的错误Mon Mar 31 10:45:52.696 E11000 duplicate key error index:.....
因为我想在 bash 脚本中执行此操作,所以我需要先清除/删除集合。我如何在 bash 脚本中执行此操作?
最佳答案
直接从手册页,使用 --drop
选项:
--drop
Modifies the import process so that the target instance drops every collection before importing the collection from the input.
因此您可以删除您正在导入的集合并开始新的。
mongoimport -d myDB -c myCollection --drop --file file.json
关于bash - 蒙戈 : drop collection using the terminal,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22757231/
我是一名优秀的程序员,十分优秀!