void |
DataBaseConnector.checkTableDefinition(String tableName) |
Checks whether the given table matches the active table schema.
|
void |
DataBaseConnector.checkTableDefinition(String tableName,
String schemaName) |
Compares the actual table in the database with its definition in the xml
configuration
Note: This method currently does not check other then primary key columns for
tables that reference another table, even if those should actually be data
tables.
|
void |
DataBaseConnector.checkTableHasSchemaColumns(String tableName,
String schema) |
Checks if the given table has at least the columns defined in the given schema.
|
List<Object[]> |
DataBaseConnector.retrieveAndMark(String subsetTableName,
String readerComponent,
String hostName,
String pid) |
Retrieves from a subset-table limit primary keys whose rows are
not marked to be in process or finished being processed and sets the rows of
the retrieved primary keys as being "in process".
|
List<Object[]> |
DataBaseConnector.retrieveAndMark(String subsetTableName,
String readerComponent,
String hostName,
String pid,
int limit,
String order) |
Retrieves primary keys from a subset table and marks them as being "in
process".
|
List<Object[]> |
DataBaseConnector.retrieveAndMark(String subsetTableName,
String schemaName,
String readerComponent,
String hostName,
String pid,
int limit,
String order) |
Retrieves from a subset-table limit primary keys whose rows are
not marked to be in process or finished being processed and sets the rows of
the retrieved primary keys as being "in process".
|
SubsetStatus |
DataBaseConnector.status(String subsetTableName,
Set<DataBaseConnector.StatusElement> statusElementsToReturn) |
|