* @param registries the schema registries
* @throws Exception if there is an error opening the Db file.
*/
public JdbmMasterTable( RecordManager recMan, Registries registries ) throws Exception
{
super( DBF, recMan, LONG_COMPARATOR, LongSerializer.INSTANCE, new ServerEntrySerializer( registries ) );
adminTbl = new JdbmTable<String,String>( "admin", recMan, STRING_COMPARATOR, null, null );
String seqValue = adminTbl.get( SEQPROP_KEY );
if ( null == seqValue )
{