User caseman - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T13:09:39Z http://stackoverflow.com/feeds/user/25559 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/556325/postgresql-management-and-monitoring/557965#557965 3 Answer by caseman for PostgreSQL management and monitoring caseman 2009-02-17T17:54:23Z 2009-02-17T17:54:23Z <p>Postgres comes with excellent command-line tools, and they're the focus of the core developer team. I personally leverage those via custom site-specific scripts for db admin, upgrade, replication. For monitoring I use nagios to script psql to query vitals.</p> <p>That said, there are some other options on the GUI-side beyond pgAdmin:</p> <p><a href="http://www.amsoftwaredesign.com/lightning_admin" rel="nofollow">Lightning Admin</a></p> <p><a href="http://www.sqlmaestro.com/products/postgresql/maestro/" rel="nofollow">SQL Maestro</a></p> <p><a href="http://phppgadmin.sourceforge.net/" rel="nofollow">phppgadmin</a></p> <p>I don't think any of these have all of the features you listed, but they might be a good jumping off point. I doubt you will find an open source tool that really competes head-to-head with Oracle Enterprise Manager. On the commercial-side, there are also additional options:</p> <p><a href="http://pgsql.navicat.com/" rel="nofollow">Navicat</a></p> <p><a href="http://www.razorsql.com/index.html?adid=ria14&amp;gclid=CPOfu4SO5JgCFQkzawodVD1icA" rel="nofollow">RazorSQL</a></p> <p><a href="http://www.ems-hitech.com/pgmanager" rel="nofollow">MS SQL Manager for PostgreSQL</a></p> <p>This wiki page also has links to many other postgres tools:</p> <p><a href="http://wiki.postgresql.org/wiki/Community_Guide_to_PostgreSQL_GUI_Tools" rel="nofollow">Community Guide to PostgreSQL GUI Tools</a></p> <p>Being a CLI-zealot myself I cannot given any specific recommendations but hopefully this is helpful.</p> http://stackoverflow.com/questions/175001/is-there-a-definitive-book-on-python/175229#175229 10 Answer by caseman for Is there a definitive book on Python? caseman 2008-10-06T17:06:48Z 2008-10-06T17:06:48Z <p>You shouldn't neglect Mark Pilgrim's excellent "Dive into Python":</p> <p><a href="http://diveintopython.org/" rel="nofollow">http://diveintopython.org/</a></p>