Searching for a MongoDB user interface [closed] - mongodb

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

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.

What happened to OpenRT? [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 have been looking around for powerful raytracing interfaces and discovered references to OpenRT but can't seem to find it anywhere. Does it even still exist?
If it is gone, what is the most used library for raytracing that is powerful enough for realtime rendering.
My answer below is all I have managed to find.
Update
I have continued my search and only seem to find OpenRL as it supports most of what I need. However I may end up writing my own wrapper or engine that suits my needs as there seems to be no mature solution. Thanks for the suggestions.
PowerVR Wizard GPUs by Imagination Technologies have been announced recently.
"Wizard is essentially an extension of Imagination’s existing PowerVR
Series6XT Rogue designs, taking the base hardware and adding the
additional blocks necessary to do ray tracing"
Possible, and seems to be the only, solution I have found is OpenRL.

Visual Studio database project alternative 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 have been using database project in Visual Studio 2010 to maintain/version control database schema and are quite happy with that since I can also use VBDBCMD to deploy the version controlled schema to any database instance quite easily.
Now I need to work with PostgreSQL and I am wondering if there is any tool similar to the "database project" thing in Visual Studio to help version control database schema as well as schema deployment.
Thanks.
The closest thing I could suggest would be Eclipse with the Toad plugin.
In general, shopping list questions are disfavored on Stack Exchange sites because they tend to solicit opinions and tend to go out of date quickly.
The other option is to use a source code management solution like git or subversion, and then just use your standard text editors on the SQL files. This is what we do in the LedgerSMB project.

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

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.

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.