StopWatch sw = new StopWatch("DbUnitDatabasePopulator");
DatabaseOperation operation = phase.getOperation(dataSetConfiguration);
try {
IDataSet dataSet = decorateDataSetIfNeeded(dataSetConfiguration.getDataSet(), dataSetConfiguration.getDecorators());
String schema = dataSetConfiguration.getSchema();
DatabaseConnection databaseConnection = getDatabaseConnection(connection, schema, dataSetConfiguration);
sw.start("populating");
operation.execute(databaseConnection, dataSet);
sw.stop();