Is there any better shell for mongo.exe [closed] - mongodb

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 9 years ago.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Improve this question
Is there any replacment for mongo.exe? I test few available GUI environment for Mongo, unfortunately none allow executing command directly.
Is there any better tools for entering mongodb queries, that at least support Unicode characters and have a multi line editing environment? (even as simple as Notepad)
I tried PowerShell ISE, but it halt after invoking mongo.exe.

I found:
Robomongo — is a shell-centric cross-platform open source MongoDB management tool (i.e. Admin GUI). Robomongo embeds the same JavaScript engine that powers MongoDB's mongo shell. Everything you can write in mongo shell — you can write in Robomongo!
a PhpStorm plugin that provides a good unicode Monogo shell.
https://github.com/dboissier/mongo4idea/

If you want to try out a web based tool, take a look at MongoLab. Other than hosting services, they provides a simple GUI interface to manage your DBs.

You can always just start python, import the pymongo driver, and run commands from there. Another benefit is that you could import more complicated python scripts you have already written and saved as .py files.

Related

Managing PostgreSQL database with the vim editor [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Is it possible to manage my postgres database using VIM? Normally i use in my
windows environment the cmd command line but i would like to find out if this is possible
and if it is could anyone provide a quick guide on how to do it?
Thank you all.
Check out the DBext plugin. It contains functions/mappings/commands to enable Vim to access several databases, including postgres.
Vim is not an IDE, and having a deep integration with things that are not directly related to text editing (like database management) within the editor is frowned upon.
That said, vi / Vim easily integrate with external tools, so if you have a handy command-line utility for managing Postgres, you can easily build your own mappings and commands to make frequently repeated tasks easier, mostly through :! or :call system(...).
Quick and dirty Postgres query on the Vim Tips Wiki provides a starting point.

Searching for a MongoDB user interface [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I searching for mongodb gui user interface & database desinger tool. Does anyone of you knows a tool which he could recommend?
I will strongly recommend RoboMongo - shell-centric cross-platform open source MongoDB management tool
RoboMongo http://robomongo.org/ is awesome, it needs virtually zero configuration,very easy to use , gives you the power of mongo shell in GUI ,has auto completion feature and works on all platforms, yet another advantage is it is still under active maintenance. I have tried tools like RockMongo and ran into usability issues. MongoUVE is not opensource, it is commercial.
I've been using MongoVUE for a while. The free version can do everything I wanted sofar.
In Windows7 I'm using MongoExplorer, a very easy and visual tool

A Simple JMX Monitoring Tool that persists data too [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I use Java Visual VM to monitor my App Server (JBoss) via JMX.
The problem is that i can see only real-time data.
I want to capture the information permanently, so that i can see history anytime. Even when Java Visual VM has been restarted.
Questions:
Is there a way to make Java Visual VM log the statistics periodically.
Is there any other tool that can log JMX stats?
I tried some things like Zabbix, but its too complex for this need.
It seems to me that JavaMelody fits for what you need.
The data is persisted. There are graphics over time (used memory, cpu, http sessions, active threads...).
It is easy to install (no agent to install on servers). And after the installation it is automated.
There is a pretty cool tool called RHQ for complete JBoss-monitoring: http://rhq-project.org/display/RHQ/Home

GUI Tool for PostgreSQL [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am new to PostgreSQL database and I want to know if there any GUI Tools for PostgreSQL just like SQLYog for MySQL?
There is a comprehensive list of tools on the PostgreSQL Wiki:
https://wiki.postgresql.org/wiki/PostgreSQL_Clients
And of course PostgreSQL itself comes with pgAdmin, a GUI tool for accessing Postgres databases.
Postgres Enterprise Manager from EnterpriseDB is probably the most advanced you'll find. It includes all the features of pgAdmin, plus monitoring of your hosts and database servers, predictive reporting, alerting and a SQL Profiler.
http://www.enterprisedb.com/products-services-training/products/postgres-enterprise-manager
Ninja edit disclaimer/notice: it seems that this user is affiliated with EnterpriseDB, as the linked Postgres Enterprise Manager website contains a video of one Dave Page.

Postgres - recommend free visual modelling tool with reverse engineering feature [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Please recommend free visual modelling tool with reverse engineering feature if such exists.
I've been happy with SchemaSpy for visual modelling. It produces handy reports on the DB structure and relationships, good structural diagrams, and more. See these sample pages from a simple demo database, including this structural diagram . It also has the handy ability to produce smaller structural diagrams specific to each table, showing relationships with that table by one or two degrees of separation.
SchemaSpy works great with PostgreSQL. Just make sure you put the path to the PgJDBC driver jar on the SchemaSpy command line as -dp /path/to/PgJDBC.jar.