All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.akquinet.jbosscc.guttenbase.tools.postgresql.PostgresqlVacuumTablesTool Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
package de.akquinet.jbosscc.guttenbase.tools.postgresql;

import java.sql.SQLException;

import de.akquinet.jbosscc.guttenbase.repository.ConnectorRepository;
import de.akquinet.jbosscc.guttenbase.tools.AbstractTablesOperationTool;

/**
 * Will execute VACUUM ANALYZE table;
 * 
 * 

* © 2012-2020 akquinet tech@spree *

* * @author M. Dahm */ public class PostgresqlVacuumTablesTool extends AbstractTablesOperationTool { public PostgresqlVacuumTablesTool(final ConnectorRepository connectorRepository) { super(connectorRepository, "VACUUM ANALYZE " + TABLE_PLACEHOLDER + ";"); } public void executeOnAllTables(final String connectorId) throws SQLException { executeOnAllTables(connectorId, false, false); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy