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;
}