我使用mongodb 2.6并尝试使用查询选项创建转储,但不允许使用"位置参数"。
我正在尝试获取参数的时间戳在指定范围之间且其id为任何指定格式的所有产品。
mongodump --host 10.xx.xxx.xx:xxxx --db test --collection products --username abc --password uvw --query '{"parameterList":{$elemMatch:{ "paramName":"TimeStamp","paramValue":{$gte:"20160620000000",$lt:"20160724000000"}}},"parameterList.paramValue": {$in:[/SPC126/,/CSC234/]}}' --authenticationDatabase test --out "c:\New folder\dump"
文件结构
{
"_id": ObjectId("590074c362f41f15144996fa"),
"product": "device1",
"parameterList":[{"paramName":"TimeStamp",
"paramValue":"20160731000700"},
{"paramName":"Id",
"paramValue": "SPC126332"}]
}
答案 0 :(得分:0)
与UNIX bash
不同,Windows cmd.exe
无法将单引号识别为分隔符。
在cmd.exe
中按原样运行示例命令会出现错误:
Error parsing command line: too many positional options
尝试更改引号,用双引号替换单引号,反之亦然。例如,使用您发布的示例命令:
mongodump --host 10.xx.xxx.xx:xxxx --db test --collection products --username abc --password uvw --query "{'parameterList':{$elemMatch:{ 'paramName':'TimeStamp','paramValue':{$gte:'20160620000000',$lt:'20160724000000'}}},'parameterList.paramValue': {$in:[/SPC126/,/CSC234/]}}" --authenticationDatabase test --out "c:\New folder\dump"
请注意上面示例中的--query "..."
而不是--query '...'
。
它应该能够成功完成转储。