Questions tagged [studio3t]

Use this tag for questions about Studio3T (formerly MongoChef) features and functionality.

Studio3T (formerly MongoChef) is a commercial IDE for MongoDB.

Related:

112 questions
0
votes
2 answers

Install Robo 3T on Ubuntu 22.04.1 (Not Studio 3T)

I need to install robo 3T on ubuntu 22.04.1. But it has latest release called Studio 3T. When i was installed robo 3T it automatically converted to studio 3T. Can anyone guide me to install old version.(Robo 3T). I also use command line commands and…
kavindu
  • 305
  • 2
  • 5
  • 13
0
votes
0 answers

can i connect my local database in digitalocean server with Studio 3t or mongoDBCompass?

I just installed MongoDB on my digitalocean server locally and everything is doing well , Can I control this data stored in my MongoDB with Studio 3t or mongoDBCompass? I tried to search for a link to can connect and I got nothing
omarAtef
  • 31
  • 2
0
votes
0 answers

Nosql Query find inside array the number that starts with 272 in Studio3T

I have a collection of persons with id, name, birthday_date, address and phone_numbers(it is an array). (https://i.stack.imgur.com/IMb8p.png) I want to do a query that finds the persons whose at least on of the phone number starts with 272 i tried…
0
votes
0 answers

Could not find or load main class install4j.Installer?

Hi I'm trying to install studio 3T and when I execute the .sh file I get Unpacking JRE ... Starting Installer ... Error: Could not find or load main class install4j.Installer1269427202 Caused by: java.lang.ClassNotFoundException:…
Akay
  • 1
  • 1
0
votes
1 answer

Connect to mongoDB Server which runs in a Docker container

I am trying to connect to MongoDB server which is running in a Docker container on my windows 10 machine. However when I try to connect to localhost:27017 I get an error. I wonder what am I missing? I tried to connect to localhost:27017
0
votes
0 answers

How to calculate the total earnings from the given city using the function in mongodb?

Running the code below pops up a message telling me that 'pracownicy.length' is not a function. Where am I making a mistake and is my code sure to return the sum of salaries from each city? (The condition of the task is to use a…
0
votes
1 answer

MongoDB. Studio3T. Mongoose. Hyper returns empty array. Pluralization in naming most likely not the issue

I ran mongod in Hyper Terminal. I established connection with Studio3T and MongoDB. And created collection and documents in Studio3T. The database, collection, and documents appear in Studio3T and MongoDB. In Hyper the database and collection exist,…
0
votes
1 answer

Empty array problem!!!!!! using node.js, mongoose connected to mongodb database

I tried all the solving on the internet and still got an empty array, I use Studio 3T connected it to MongoDB database and I want to use app.get to see my collection's object. I used the Studio 3T terminal and used db.articles.find() where I can see…
0
votes
0 answers

Inserts in transactions visible in Studtio3T before commit

This is a pursue of knowledge. I have this simple example webapi written in C# that inserts data into MongoDb in a transaction. So by calling a certain endpoint I do several inserts with a certain delay (for example 10 inserts, 1-by-1 with delay of…
mikeyy
  • 835
  • 1
  • 10
  • 18
0
votes
0 answers

Please tell me how to resolve the Mongodb connection error

(base) ashton@wookui-MacBookPro etc % mongosh Current Mongosh Log ID: XXX Connecting to: mongodb://127.0.0.1:27017/?directConnection=true&serverSelectionTimeoutMS=2000&appName=mongosh+1.5.4 MongoNetworkError: connect ECONNREFUSED…
AshtonJo
  • 3
  • 2
0
votes
1 answer

MongoDB LINQ - How get all keys in all level in a collection

I'm trying to get all the keys in all levels of a Mongo collection. I have something like: { "_id" : ObjectId("000000000000000000050904"), "CRM" : { "Teste" : "true" }, "Endereco" : { "Cidade" : "MARINGA", }, …
0
votes
1 answer

Getting the amount of days a person is employed - mongodb

I am new to mongodb and I have a task to calculate the amount of days a person is/was employed and get the 5 employees, who were employed for longest time. I have written some code, but the amount of days is always null. Here is my…
0
votes
0 answers

Studio 3T network is unreachable

I have a mongodb atlas connection string. When I use mongodb compass, all works great. When I try to connect using studio 3t, I get network is unreachable error. of course I have all the rules in the firewall defined. also studio 3t shows the same…
realPro
  • 1,713
  • 3
  • 22
  • 34
0
votes
1 answer

How to get diff between tow queries in mongodb?

I have collection [{ "_id" : "5c9a69ef42c82b0197a2ffb8", "key" : "a", "language" : "en", "version" : "0.1", }, { "_id" : "5c9a69ef42c82b0197a2ffb8", "key" : "b", "language" : "en", "version" : "0.1", }, {…
aharo vishinsky
  • 131
  • 1
  • 4
  • 12
0
votes
2 answers

How to filter array (of objects) inside one document in mongo db based on some condition

I have the below docs collection structure. I'm able to filter the documnents with various approaches, but not able to filter the array inside the documents. { "_id": "", "employee": { "EmployeeAttributeValues": { …
shree
  • 35
  • 11