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
0 answers

I can't see my data in my mongodb databse

this is the first time I'm using MongoDB and when I connect my MongoDB database by SSH connection to Studio 3T I can see the database and the collection: Hre he is (I'm hosting the website on a server under centos 8)1 The website work, I can signup,…
0
votes
0 answers

Unable to connect to my Mongo DB via SSH or Studio3T

I have an EC2 instance and a Mongo DB. Say my DB credentials were as follow: DB_USERNAME: 'Max', DB_PASSWORD: 'secretPass', //DB_HOST: "20.133.122.121", DB_HOST: "155.5.5.0", DB_PORT: 27017, DB_NAME: 'maxowner' The Custom TCP inbound rule on…
Sammuel
  • 27
  • 5
0
votes
1 answer

Get field from mongoDB in an Array without updating data

How can I get a field in an array without updating DB collection? I need one field in an Array for a code in Node js. for example I have { "_id" : ObjectId("abcs1234566"), "name": "A" }, { "_id" : ObjectId("sfdghjk234"), "name": "B" }, { "_id" :…
Shakeel
  • 21
  • 7
0
votes
0 answers

When I was upgrading mongo (3.6 - 4.2), I had to clear data/db/ folder. So i lost all databases. Is there any way to prevent data loses?

[Windows 10] When I was upgrading Mongo community(3.6 - 4.2), I had to clear data/db/ folder. So i lost all databases. Is there any way to prevent data loses? I know i can take backup using Studio 3T (Exporting and importing). But i dont want to do…
0
votes
1 answer

MongoDB Compass disconnects immediately

I'm trying to connect to MongoDB with MongoDB Compass 1.20.4 My connection string is: mongodb://localhost:27017/?replicaSet=rs0 Here is my MongoDB docker setup: version: '3' services: mongo0: hostname: mongo0 container_name: mongo0 …
mikheevm
  • 559
  • 5
  • 14
0
votes
1 answer

Aggregation for counting the occurrence of sub-string in main string in mongodb

I am new to MongoDB and might be its a noob question. I want to count the number of times "lupoK" repeated in the message field which is - "message" : "first lupoK lupoK" using aggregation in MongoDB, I am using studio3t interface. My document…
0
votes
1 answer

Merge mode missing in Studio 3T import csv

Is there way to merge document during csv import . I dont find merge option in import csv in studio 3T
Nithish
  • 61
  • 10
0
votes
0 answers

Why am I receiving "error connected to db server: no reachable servers" after importing GZipped Archive file(.agz) to Studio 3T?

I have my database running on a docker container and I want to upload data stored in GZipped Archive file (.agz) to Studio 3T using Mongodump import. However, when I click execute it returns an error: "Import mongodump archive error connecting to db…
Joe P
  • 63
  • 1
  • 8
0
votes
0 answers

how to connect studio3t to pymongo on localhost

I'm creating a collection and using localhost but studio 3t doesn't show any tree I clicked connect tab on studio 3t and made a new connection on it's default (localhost) but when i connect to this new connection the collection that I have created…
mohsen
  • 524
  • 5
  • 14
0
votes
0 answers

Can you include a count field inside the "_id"?

I am trying to count the number of specific key-value pairs per UserID and then $bucket these results multiple times by specific conditions such as the country being "US" I have already tried bucketing by using $match on "country" : "US", "OS" :…
Frank Valdez
  • 77
  • 1
  • 1
  • 9
0
votes
1 answer

Studio 3T tool : Avoid new console output tab on each query run

We are using the Studio 3T client tool to connect with Mongodb database. Whenever I run a query or press F5 key, the new output tab is opening on my console. Basically, I want the single console window that should show the result of currently…
Nandy
  • 666
  • 1
  • 12
  • 27
0
votes
0 answers

MongoDB giving Error While importing JSON, not all the documents get imported

Import JSON done Target: cloud Total time: 00:17 Transferring documents... [JSON] : Message: {"Errors":["Request rate is large"]} Elapsed time: 00:17 some of the documents get imported only.
0
votes
1 answer

SQL query IN clause: How to escape special characters when passing a list

I am passing a list of journals in a query which contains special characters like &,-'() in the journal names. Here is what my query looks like: select alt_id, citation.doi, citation.journal, citation.volume, citation.issue, citation.pubdate,…
Tab Key
  • 171
  • 2
  • 15
0
votes
1 answer

Studio3T Import SQL to MongoDB multiple tables

Is it possible to import more than one table at a time from SQL to MongoDB using Studio3T?
Predrag Stojadinović
  • 3,439
  • 6
  • 34
  • 52
0
votes
0 answers

How to connect Mongo db from Remote Machine

I have installed and configured mongdb in one of the ubuntu machine. Now am trying to connect that mongodb database from my development machine (windows machine) through putty it works fine . But I want to connect through studio 3T but am unable to…