Month: November 2008

  • Weblogic Tuning the Default Execute Queue Threads

    Tuning the Default Execute Queue Threads The value of the ThreadCount attribute of an ExecuteQueue element in the config.xml file equals the number of simultaneous operations that can be performed by applications that use the execute queue. As work enters an instance of WebLogic Server, it is placed in an execute queue. This work is…

  • 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