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
1
vote
2 answers

Studio 3T select all array values in an array column

I have a Mongo collection with the current schema: (simplified) { "_id" : ObjectId("55a94615a243a426db43d81e"), "property_name" : "My Main Property", "domain_list" : [ "mynumber1url.com", "mynumber2url.com", …
DShultz
  • 4,381
  • 3
  • 30
  • 46
1
vote
1 answer

how to import data to mongodb with multiple index

I am quite new to mongodb, I just created a database name Test and inside have a collection called projects i have a json file which contain 2 projects like this : { "-KutvlMPRHGWWTgk1Mh4" : { "isPrivate" : true, "proj_contact" :…
Jake Lam
  • 3,254
  • 3
  • 25
  • 44
1
vote
0 answers

Using MongoChef with mongodb in docker container

I want to use MongoChef to manage MongoDB that I have running as docker container, but I cannot find how I use IntelliShell in MongoChef... It asks from me the path to mongo executable, but I do not have it, because I didn't install mongodb locally,…
Alex Dn
  • 5,465
  • 7
  • 41
  • 79
1
vote
1 answer

Studio 3T mongodb aggregation issue

I'm trying to find the user with the most friends from a Yelp dataset on studio3t using mongodb. I am using studio3t's aggregation tool. First I selected "name" and "friends" with $project Next, I wanted to group by the name of each user, and then…
Jsb54
  • 11
  • 1
1
vote
0 answers

MongoDB - Connection to GUI fails after upgrading from free to M10?

I have a problem when I want to connect to my MongoDB database (MongoAtlas). I have used Studio3T, but now I am not able to connect to my database any more. When I insert the Connection URI to 3T, I get the following response: Connection…
Jaybruh
  • 333
  • 5
  • 14
1
vote
0 answers

MongoDB converting from int32 to double itself

I am getting a weird problem when I run in shell for mongoDB. My collection structure is like below in mongoDB.The type of ServiceList items must be integer. { "_id" : ObjectId("56565"), "Contact" : "", "Email" : "", "AppList" :…
seyid yagmur
  • 1,572
  • 17
  • 26
1
vote
1 answer

Cannot connect Studio 3t for MongoDB v2.4.6 via SSH

I have SunOS and I am trying to connect from Studio 3T on Windows. I cannot connect and get the following error in the log: Database error(MongoIncompatibleDriverException): Server at xx.xx.xx.xx:27017 reports wire version 0, but this version of…
webwarrior
  • 87
  • 1
  • 9
0
votes
1 answer

Running an Update Many MongoDb Query v6 failing in Studio 3t IntelliShell

I am trying to run an update many query in Studio 3t's intellishell using MongoDB v.6.0.9. This is my query: db.address_db.updateMany({ "geometry.coordinates": { "$geoWithin": { "$box": [ [-134.4, 58.3], [-134.3, 58.4] …
CodeConnoisseur
  • 1,452
  • 4
  • 21
  • 49
0
votes
0 answers

Convert UUID to CSUUID mongoDB

I try create new CSUUID column as _id, usually I can do in Studio 3T it with javascript in $addFields aggregation: function: { "_id": { $function: { body: function() { return UUID(); }, …
Sergey
  • 7,933
  • 16
  • 49
  • 77
0
votes
2 answers

I cant import Pymongo

I want to try import pymongo via JupyterLab but i have received an error message and tried uninstall pymongo, httpx, httpcore and again install them but not work. how can i solve this problem, please help me. Thank you for interest. let me show you…
0
votes
0 answers

MongoDB: Why always report non-authorized error when try to manage users in one database?

all, I am new to mongoDB, and recently I am trying to set up a local env to try it, below is my step: Use docker to create a mongoDB container: docker run -d -name my-mongo -p 27017:27017 \ -e MONGO_INITDB_ROOT_USERNAME=admin \ -e…
ahwyX100
  • 585
  • 2
  • 9
  • 22
0
votes
0 answers

How to get Studio3T to show collection data automatically?

Why I have to press F5 everytime to get data from my collections? I imported a database in Studio3T free version, Everytime I'mtry to get data from collection I have to click on run entier script button/F5 to get data from each collection which too…
0
votes
0 answers

Load Custom SQL query into array in Studio 3T

I have a table called SOURCE_CATEGORY and would like to use Studio 3T to load the data from MSSQL to MongoDB. I wrote a custom SQL to group the NAME column to combine as String, but in Studio 3T, how can I make the NAME column into array(based on…
xxestter
  • 441
  • 7
  • 19
0
votes
1 answer

How to SSH into a server and then connect to a port?

I have a docker-compose.yml file that runs a MongoDB instance. This is happening on a remote server. The port for MongoDB is not exposed to the internet. I am trying to be able to connect to this MongoDB instance. version: "2.1" services: ... …
pizzaisdavid
  • 455
  • 3
  • 13
0
votes
1 answer

Why is there a database named "test" when connecting MongoDB using Studio3T?

I'm learning MongoDB and trying to use Atlas. I created a remote cluster and tried to connect it using both MongoDB Compass and Studio 3T. However, I noticed that after connecting with Studio 3T, there was an empty database named "test" appearing in…