About 1,064,982 results (1,285 milliseconds)

Using BinData values in mongo shell

https://groups.google.com/g/mongodb-user/c/jiQEz2ENypw
Feb 20, 2012 ... Specifically, ObjectId is a method to allow the creation of a unique document ID, since every MongoDB document requires an _id field as its “ ...

Re: MongoDB Shell Like Queries in Java Driver

https://groups.google.com/d/topic/mongodb-user/7qQikXHmaHw
... using the query() method of an DBCollection instance. Basically, you form the equivalent shell find query using nested DBObject's. -Stephen On Tuesday ...

Testing mongo with C# and it seems very slow on find compared ...

https://groups.google.com/g/mongodb-csharp/c/P1TGkG0VHXw
Aug 21, 2013 ... MongoDB's speed depends a lot on your schema design and your use of indexes. ... MongoDB shell version: 2.4.6. connecting to: test2. {. "cursor ...

MongoDB shell version: 3.2.0 using RAM memory and there is no ...

https://groups.google.com/g/mongodb-user/c/1kTMnxpXQUA/m/lCm-r7SDAgAJ
By default MongoDB 3.2 will allocated 50% of the RAM (assume you have more than a GB) for the WirdTiger Engine...

Download Mongodb Shell

https://sites.google.com/view/download-mongodb-shell
This guide utilizes AWS Cloud9, a web-based terminal to connect and query your Amazon DocumentDB cluster using the mongo shell directly from the AWS Management ...

Out of memory on mongo shell

https://groups.google.com/g/mongodb-user/c/4biiyl_b2aE
memory error. Didn't really know how much memory it used at the end. I were using one of the servers to do the import, so memory where

How to find regex in Vertx mongo client

https://groups.google.com/g/vertx/c/CzsZx7xlW9Q
I worked around this case by using the official async mongo java driver from mongodb ... I tried to put this in mongo shell and it also works. db.deals.find({" ...

Using MONGO DB in shell transform.

https://groups.google.com/g/mountebank-discuss/c/CtA1wX5T0N8
Jul 1, 2021 ... Brandon Byars ... change_response();. console.log(response);. }); // Nothing here -- so the code returns before the callback has a chance to ...

Long numbers are truncated in MongoDb shell • Codewrecks

http://feedproxy.google.com/~r/AlkampferEng/~3/_IQ3PIQjSlU/
Jun 2, 2016 ... Actually a double precision floating point number, that uses 64 bit for representation, is not capable of having the same precision of an Int64 ...

Java Driver runCommand as in shell

https://groups.google.com/g/mongodb-user/c/4jMmKTyL1qw
It looks like you are using the 3.x Mongo Java Driver - so MongoDatabase#runCommand() will work. You can parse the user json input via Document.parse(json) ...

mongo shell 3.4.2 works differently on windows and linux

https://groups.google.com/g/mongodb-user/c/wYPHIu4DQ9w
we use the command. mongo -u mymongoadmin -p xxxxxxxx --host LOADBALANCERIP --port 80 admin. We can connect successfully. mongo --version. MongoDB shell version ...

Cant run "mongo" command (mongo shell) on Ubuntu after installation

https://groups.google.com/g/mongodb-user/c/vWHTMwlvacE
Oct 7, 2019 ... ... read the docs and just cant make it work. I installed the MongoDB using the ".deb" file, and i also tried follow up the docs:

3 dots after submitting (small) query/entry in Mongo shell?

https://groups.google.com/g/mongodb-user/c/EdxJxh-QkjY
Nov 13, 2012 ... I'm at the very beginning of using MongoDB. I've run the following command just to get up and running and populate a db with something (I ...

Error: couldn't connect to server 127.0.0.1:27017 src/mongo/shell ...

https://groups.google.com/g/mongodb-user/c/lBA_GRuMSig/m/oVY3yVSGnz8J
Jan 22, 2013 ... use partnerdb instead and that worked. What I'm looking for is how to write a JavaScript that I can use to update an existing database. I'm ...

Mongodb string id vs objectid, choose how and why?

https://groups.google.com/g/meteor-talk/c/f-ljBdZOwPk/m/oQYZQxCAKN8J
Jan 25, 2014 ... It seems that, mongodb's default is objectid (this is also the case if we use command line meteor mongo console) but meteor has opted for string ...

mongo shell and the --eval

https://groups.google.com/g/mongodb-user/c/RCUkLer0Sd8
$mongo dbname --eval "db.collection1.name.insert({ dataset1}}; db.collection2.name.insert({ dataset2}};" Perhaps I shouldnt be using the shell for this?

MongoDB API change

https://groups.google.com/d/topic/racket-users/8VB1I3Kb22o
Dec 22, 2016 ... It went well so I changed a few things, and I checked everything through the mongo shell. ... use "listCollections". So I first tried to change ...

User can't connect from command line?

https://groups.google.com/g/mongodb-user/c/FMqVcnkrxtU
Apr 26, 2016 ... MongoDB shell version: 3.2.5. connecting to: pat ... You can also use the --authenticationDatabase <dbname> parameter to the mongo shell, e.g.:

pymongo using mongo shell commands

https://groups.google.com/g/mongodb-user/c/DpNTir3H-og
Erez Zarum ... i wrote a small snippet to do that, enjoy. ... # This code is based on printShardingStatus function from mongodb engine. ... You received this message ...

Query using mongo-persistor when the _id is a UUID (BinData)

https://groups.google.com/g/vertx/c/2uynNUXeoY8
I've tried the same query [ db.files.find({"_id" : {"$binary":"5BG1VMBz6X4bxdWlAgDtqg==", "$type":"3"}} ]in Mongo Shell, and it didn't work. The Java Driver's ...