gpt4 book ai didi

bash - 蒙戈 : drop collection using the terminal

转载 作者:行者123 更新时间:2023-11-29 09:01:36 25 4
gpt4 key购买 nike

我想将数据导入到几个集合中。我就是这样做的

$> 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com