tracking

Beginning Analytics: Interpreting and Acting on Your Data


JConsole – Monitor Remote Machine Process (tomcat)

The JConsole graphical user interface is a monitoring tool that complies to the Java Management Extensions (JMX) specification. JConsole uses the extensive instrumentation of the Java Virtual Machine (Java VM) to provide information about the performance and resource consumption of applications running on the Java platform. Jconsole is very useful in monitoring performance of JVM [...]


Cost Effective Web Development Techniques

Cost Effective Web Development Techniques View more presentations from Drew Mclellan.


Oracle : Finding User/Database Size

Finding User(s) Size Sometimes one needs to know the space used by a database user. Following query can be used to know the space used by the logged in user in MBs:   SELECT sum(bytes)/1024/1024 user_size FROM user_segments;   Similarly it is possible to find the space occupied by all the users in a database. [...]


Subversion (svn) Best Practices

Subversion (SVN) is a version control system initiated in 2000 by CollabNet Inc. It is used to maintain current and historical versions of files such as source code, web pages, and documentation. Its goal is to be a mostly-compatible successor to the widely used Concurrent Versions System (CVS). Subversion official website Svn Best Practices View [...]