void flushCatalog(String catalogName) {
Iterator schemas = RolapSchema.getRolapSchemas();
while (schemas.hasNext()) {
RolapSchema curSchema = (RolapSchema) schemas.next();
if (curSchema.getName().equals(catalogName)) {
new CacheControlImpl().flushSchema(curSchema);
}
}
}