Package org.jmanage.connector.plugin.oracle

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


    }

    /* MBean Operations */
   
    public CompositeData getHitRatioData() throws Exception {
        DataAccessor da = new DataAccessor(SQL_HIT_RATIO);
        return da.execute().getCompositeData();
    }
View Full Code Here


        DataAccessor da = new DataAccessor(SQL_HIT_RATIO);
        return da.execute().getCompositeData();
    }

    public TabularData getTablespaceUsage() throws Exception {
        DataAccessor da = new DataAccessor(SQL_TABLESPACE_USAGE);
        return da.execute().getTabularData();
    }
View Full Code Here

        DataAccessor da = new DataAccessor(SQL_TABLESPACE_USAGE);
        return da.execute().getTabularData();
    }

    public TabularData getFileStatistics() throws Exception {
        DataAccessor da = new DataAccessor(SQL_DATAFILE_STATS);
        return da.execute().getTabularData();
    }
View Full Code Here

        }
    }

    private void initLicenseInfo() {
        try {
            licenseInfo = new DataAccessor(LICENSE_INFO_SQL).execute().getCompositeData();
        }
        catch (Exception e) {
            logger.severe("Error getting licenseInfo. error: " + e.getMessage());
        }
    }
View Full Code Here

        }
    }

    private void initOptionsInstalled() {
        try {
            optionsInstalled = new DataAccessor(OPTION_SQL).execute().getTabularData();
        }
        catch (Exception e) {
            logger.severe("Error getting optionsInstalled. error: " + e.getMessage());
        }
    }
View Full Code Here

            "v$session.sid = v$sess_io.sid and " +
            "(consistent_gets + block_gets) > 0 and " +
            "Username is NOT NULL";

    public TabularData getSessionHitRatio() throws Exception {
        DataAccessor da = new DataAccessor(SQL_SESS_HIT_RATIO);
        return da.execute().getTabularData();
    }
View Full Code Here

        DataAccessor da = new DataAccessor(SQL_SESS_HIT_RATIO);
        return da.execute().getTabularData();
    }

    public TabularData getSessionInfo() throws Exception {
        DataAccessor da = new DataAccessor(SQL_SESSION);
        return da.execute().getTabularData();
    }
View Full Code Here

            "select name, value, isdefault, isses_modifiable, issys_modifiable " +
            "from v$parameter order by name";

    public TabularData getParameters() {
        try {
            return new DataAccessor(SQL).execute().getTabularData();
        }
        catch (Exception e) {
            logger.severe("Error getting v$parameter info. error: " + e.getMessage());
            return null;
        }
View Full Code Here

            "v$parameter.name = 'shared_pool_size'";
   
   
    public TabularData getSupportedInitParams() {
        try {
            return new DataAccessor(SQL_SUPPORTED_INIT_PARAM).execute().getTabularData();
        }
        catch (Exception e) {
            logger.severe("Error getting supported init params. error: " + e.getMessage());
            return null;
        }
View Full Code Here

        }
    }

    public TabularData getTopTenUsers() {
        try {
            return new DataAccessor(SQL_TOP_TEN_USERS_BY_CPU).execute().getTabularData();
        }
        catch (Exception e) {
            logger.severe("Error getting top ten users by cpu. 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.