Author: Gary

  • Oracle datapump stuff / Links

    Datapump 101 links: http://www.oracle-base.com/articles/10g/OracleDataPump10g.php http://www.orafaq.com/wiki/Datapump relevant domain names

  • Size of Schema in Oracle

    SQL Script to show the size of each schema in an Oracle database: SELECT OWNER,SUM(BYTES/1024/1024) “SIZE OF SCHEMA(MEGABYTES)” FROM DBA_EXTENTS GROUP BY OWNER ORDER BY SUM(BYTES/1024/1024) DESC Check links . web design history

  • Displaying hardware and CPU information on solaris

    To find out what hardware is installed on your Solaris system, including RAM, CPUs, PCI cards, and external devices use prtconf -v ( the command is usually found in /usr/sbin). Also prtdiag which is actually a diagnostic tool but also contains hardware information. For processor information use psrinfo -v

  • Weblogic – Monitoring a WebLogic Server Domain

    Monitoring a WebLogic Server Domain The tool for monitoring the health and performance of your WebLogic Server domain is the Administration Console. Using the Administration Console, you can view status and statistics for WebLogic Server resources such as servers, HTTP, the JTA subsystem, JNDI, security, CORBA connection pools, EJB, JDBC, and JMS. For more details,…

  • Weblogic – Setting Performance-Related Configuration Parameters

    Setting Performance-Related Configuration Parameters The WebLogic Server configuration file (config.xml) contains a number of performance-related parameters that can be fine-tuned depending on your environment and applications. Tuning these parameters based on your system requirements (rather than running with default settings) can greatly improve both single-node performance and the scalability characteristics of an application. Within a…