Questions tagged [robo3t]

Robo 3T (formerly Robomongo) is a shell-centric cross-platform MongoDB management tool.

The Robo 3T (formerly Robomongo) is a shell-centric cross-platform MongoDB management tool. Unlike most other MongoDB admin UI tools, Robo 3T embeds the actual mongo shell in a tabbed interface with access to a shell command line as well as GUI interaction.

Useful links

416 questions
0
votes
1 answer

MongoDB export to CSV the results of an aggregate unwind query?

I'm getting an 'error validating settings: query is not valid JSON: json: cannot unmarshal string into Go value of type map[string]interface {}' when trying to output my query to CSV. My query is: …
James Heslip
  • 11
  • 1
  • 3
0
votes
2 answers

mongodb/mongoose aggregate memory usage very big+

I have a mongodb into which multiple sensors dump their data once a day to a mongodb. Each document in essense is: { sid , date, data } (sensor_id, date as date (I only use the date component), and a data array of a couple hundred values. Now I…
awb99
  • 11
  • 1
  • 5
0
votes
1 answer

Digital Ocean MongoDB Connection Error

I use Nodejs with Mongodb connection, it works. I didn't not change anything in code . Now I can't connect to mongodb. When I try connect with Robomongo when I don't use ssh I can't connect But when I try to connect with ssh I can connect. My…
0
votes
1 answer

Robomongo doesn't seem to update documents

I am writing a web application using C# and MongoDB. In order to update a document I have written a code looking like this: public MyType Update(MyType obj) { ... var oFilter = Builders.Filter.Eq(o => o.MyId, obj.MyId); var…
nix86
  • 2,837
  • 11
  • 36
  • 69
0
votes
0 answers

Changing filed to ObjectID MongoDB

I have a collection that contains around 5000 documents. In each document there is field BrandID that I would like to change from string to MongoDB ObjectID. I have tried following shell command but it only updates first document. I dont get any…
Fahad
  • 173
  • 1
  • 12
0
votes
2 answers

connect to documentdb using robomongo

I have a Document DB (using the DocumentDB interface, NOT the MongoDb interface), so the connection string looks like: AccountEndpoint=https://SomeDatabase.documents.azure.com:443/;AccountKey=xxxxx; it does NOT look like…
Traderhut Games
  • 1,222
  • 1
  • 15
  • 30
0
votes
2 answers

Cant Connect to MongoDB server from Client

I am trying to connect from my machine (client) to server, and it says I cant connect to server. My machine is Windows 10 and Server machine is Windows Server 2016. And I tried to connect from cmd and it gives me this error. Help me with this…
Desmond
  • 299
  • 1
  • 3
  • 6
0
votes
1 answer

MongoDB table records are not getting persisted with ES6 Promise.ALL

I am new to MongoDB and working on small tutorial to create associations between tables in MongoDB. As per the tutorial, we need to create association between three tables. 1. User table 2. BlogPost table 3. Comment table User may have multiple…
Gunjan Shah
  • 5,088
  • 16
  • 53
  • 72
0
votes
2 answers

RoboMongo gte date query

Why would RoboMongo 1.0 return the following Object: { "code" : "bar", "value" : 133.63, "at" : "2017-05-03T10:42:08.000+1000" "_id" : ObjectId("590927605105bf499025c202") } from the following query: db.getCollection('foo').find({ "at" : { $gte :…
Black
  • 5,023
  • 6
  • 63
  • 92
0
votes
1 answer

Mongo Shell print is not displaying?

So I am trying to compare a simple comma delimited list to the documents in my collection. This is my code: var file = cat("Price Level V.csv"); var skus = file.split("\n"); for(var i = 0; i < skus.length; i++) { var vasku = skus[i].split(','); …
Michael
  • 311
  • 4
  • 22
0
votes
1 answer

ubuntu 16 cannot install robomongo

I am getting error when installing robomongo,I am new to ubuntu and i have checked and all qt files are present there.Still i am getting the error /robomongo ./robomongo: /usr/lib/x86_64-linux-gnu/libQt5Core.so.5: version `Qt_5.7' not found…
Shersha Fn
  • 1,511
  • 3
  • 26
  • 34
0
votes
1 answer

MongoDB Server Ubuntu 16.04

I've installed MongoDB on my Ubuntu 16.04 VPS and allowed connections through the firewall. When I run the server using the command (mongod), it starts without a problem and I can then connect to it (using RoboMongo as test application). However,…
Jasper
  • 11
  • 5
0
votes
1 answer

Why the robomongo close when found more than 100 thousand registers?

code: db.getCollection('tcc').find({"keys.year":1990}) I know that have more than 100 thousand documents When I execute this code, my robomongo close Why?
0
votes
1 answer

Unable to connect to mongo (3.4) using robomongo (0.9.0) and username and password?

I have a mongo 3.4 instance with a cfg file thus: systemLog: destination: file path: D:\Mongo\log\mongod.log storage: dbPath: D:\Mongo\db Using robomongo version 0.9.0 I've added a user: Now when I try and connect to the DB I get an…
Liam
  • 27,717
  • 28
  • 128
  • 190
0
votes
1 answer

finding all duplicates in mongo db/robomongp

Been stuck for almost two weeks, is there anyway with mongo db to find all duplicates in a collection and then delete them? i have +- 66 000 records.also new to mongo so how do i use that whole collection as an array instead of typing all out.
user6602747