Package org.jmanage.connector.plugin.oracle

Examples of org.jmanage.connector.plugin.oracle.DataAccessor


        }
    }
   
    public TabularData getTopTenExpensiveQueries() {
        try {
            return new DataAccessor(SQL_TOP10_EXPENSIVE_QUERY).execute().getTabularData();
        }
        catch (Exception e) {
            logger.severe("Error getting top ten users. error: " + e.getMessage());
            return null;
        }
View Full Code Here


        }
    }
   
    public TabularData getLockedObjects() {
        try {
            return new DataAccessor(SQL_LOCKED_OBJECTS).execute().getTabularData();
        }
        catch (Exception e) {
            logger.severe("Error getting locked objects. error: " + e.getMessage());
            return null;
        }
View Full Code Here

   
    private static final String SQL = "select POOL || ' - ' || NAME as NAME, BYTES from V$SGASTAT";
   
    public TabularData getStatistics(){
        try {
            return new DataAccessor(SQL).execute().getTabularData();
        }
        catch (Exception e) {
            logger.severe("Error getting SGA stats. error: " + e.getMessage());
            return null;
        }
View Full Code Here

TOP

Related Classes of org.jmanage.connector.plugin.oracle.DataAccessor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.