updated CDMServer and corresponding test files to use dbunit datasets with the possib...
authorCherian Mathew <c.mathew@bgbm.org>
Mon, 20 Oct 2014 10:59:37 +0000 (10:59 +0000)
committerCherian Mathew <c.mathew@bgbm.org>
Mon, 20 Oct 2014 10:59:37 +0000 (10:59 +0000)
of targetting a managed as well as external instance of the CDMServer

18 files changed:
.gitignore
eu.etaxonomy.taxeditor.remoting/src/main/java/eu/etaxonomy/cdm/api/application/CdmApplicationRemoteConfiguration.java
eu.etaxonomy.taxeditor.remoting/src/main/java/eu/etaxonomy/cdm/api/application/CdmApplicationRemoteController.java
eu.etaxonomy.taxeditor.remoting/src/main/java/eu/etaxonomy/cdm/api/cache/CdmServiceCacher.java
eu.etaxonomy.taxeditor.remoting/src/main/java/org/hibernate/collection/internal/AbstractPersistentCollection.java
eu.etaxonomy.taxeditor.remoting/src/main/java/org/hibernate/proxy/AbstractLazyInitializer.java
eu.etaxonomy.taxeditor.remoting/src/main/resources/eu/etaxonomy/cdm/remotingApplicationContext.xml
eu.etaxonomy.taxeditor.remoting/src/test/java/eu/etaxonomy/taxeditor/exception/CDMServerException.java
eu.etaxonomy.taxeditor.remoting/src/test/java/eu/etaxonomy/taxeditor/httpinvoker/BaseRemotingTest.java
eu.etaxonomy.taxeditor.remoting/src/test/java/eu/etaxonomy/taxeditor/httpinvoker/CDMServer.java
eu.etaxonomy.taxeditor.remoting/src/test/java/eu/etaxonomy/taxeditor/lazyloading/AbstractLazyInitializerTest.java
eu.etaxonomy.taxeditor.remoting/src/test/java/eu/etaxonomy/taxeditor/lazyloading/CdmServiceCacherTest.java
eu.etaxonomy.taxeditor.remoting/src/test/java/eu/etaxonomy/taxeditor/lazyloading/RemotePersistentCollectionTest.java
eu.etaxonomy.taxeditor.remoting/src/test/resources/datasources.xml
eu.etaxonomy.taxeditor.remoting/src/test/resources/eu/etaxonomy/cdm/testRemotingApplicationContext.xml
eu.etaxonomy.taxeditor.remoting/src/test/resources/h2/cdmTest.h2.db
eu.etaxonomy.taxeditor.remoting/src/test/resources/h2/cdmTest.trace.db
eu.etaxonomy.taxeditor.remoting/src/test/resources/unitils.properties

index 55ca6316f23e7bf86e27991916413f69af591b26..dc0d24ec9501ecc7c61e1e3bc94ff80c3793a4df 100644 (file)
@@ -31,6 +31,9 @@ eu.etaxonomy.taxeditor.navigation/.settings
 eu.etaxonomy.taxeditor.navigation/target
 eu.etaxonomy.taxeditor.printpublisher/.settings
 eu.etaxonomy.taxeditor.printpublisher/target
+eu.etaxonomy.taxeditor.remoting/*.log
+eu.etaxonomy.taxeditor.remoting/.settings
+eu.etaxonomy.taxeditor.remoting/lib
 eu.etaxonomy.taxeditor.remoting/lib/*.jar
 eu.etaxonomy.taxeditor.remoting/target
 eu.etaxonomy.taxeditor.store/.settings
index 90cfc09909bd84ff974481bfed98d01ecaa83cfe..b664cbe6920324c03860ada14d2aadbb4e82652f 100644 (file)
@@ -1,8 +1,8 @@
 /**\r
 * Copyright (C) 2014 EDIT\r
-* European Distributed Institute of Taxonomy \r
+* European Distributed Institute of Taxonomy\r
 * http://www.e-taxonomy.eu\r
-* \r
+*\r
 * The contents of this file are subject to the Mozilla Public License Version 1.1\r
 * See LICENSE.TXT at the top of this package for the full license terms.\r
 */\r
@@ -11,17 +11,17 @@ package eu.etaxonomy.cdm.api.application;
 \r
 import javax.sql.DataSource;\r
 \r
-import org.hibernate.SessionFactory;\r
-\r
 import org.apache.log4j.Logger;\r
+import org.hibernate.SessionFactory;\r
 import org.springframework.beans.factory.annotation.Autowired;\r
 import org.springframework.stereotype.Component;\r
 import org.springframework.transaction.PlatformTransactionManager;\r
 import org.springframework.transaction.TransactionStatus;\r
 \r
+import eu.etaxonomy.cdm.api.cache.ICachedCommonService;\r
 import eu.etaxonomy.cdm.api.conversation.ConversationHolder;\r
 import eu.etaxonomy.cdm.api.conversation.ConversationHolderMock;\r
-import eu.etaxonomy.cdm.api.service.IDatabaseService;\r
+import eu.etaxonomy.cdm.api.service.ICommonService;\r
 import eu.etaxonomy.cdm.ext.geo.IEditGeoService;\r
 \r
 \r
@@ -32,16 +32,19 @@ import eu.etaxonomy.cdm.ext.geo.IEditGeoService;
  */\r
 @Component\r
 public class CdmApplicationRemoteConfiguration extends CdmApplicationDefaultConfiguration {\r
-       \r
+\r
        @SuppressWarnings("unused")\r
        private static final Logger logger = Logger.getLogger(CdmApplicationRemoteConfiguration.class);\r
 \r
        @Autowired\r
        IEditGeoService editGeoService;\r
-       \r
+\r
+    @Autowired\r
+    private ICachedCommonService cachedCommonService;\r
+\r
        public CdmApplicationRemoteConfiguration() {\r
        }\r
-       \r
+\r
     /* (non-Javadoc)\r
      * @see eu.etaxonomy.cdm.api.application.CdmApplicationDefaultConfiguration#getTransactionManager()\r
      */\r
@@ -76,40 +79,47 @@ public class CdmApplicationRemoteConfiguration extends CdmApplicationDefaultConf
     public void commitTransaction(TransactionStatus txStatus) throws UnsupportedOperationException {\r
                throw new UnsupportedOperationException("commitTransaction is not implemented for CdmApplicationRemoteConfiguration");\r
        }\r
-                       \r
+\r
        /* (non-Javadoc)\r
         * @see eu.etaxonomy.cdm.api.application.CdmApplicationDefaultConfiguration#NewConversation()\r
         */\r
        @Override\r
-       public ConversationHolder NewConversation() {           \r
+       public ConversationHolder NewConversation() {\r
                return new ConversationHolderMock();\r
        }\r
-       \r
+\r
        /**\r
         * @return\r
         */\r
        public IEditGeoService getEditGeoService() {\r
                return this.editGeoService;\r
        }\r
-       \r
+\r
+    /**\r
+     * @return\r
+     */\r
+    public ICachedCommonService getCachedCommonService(){\r
+        return this.cachedCommonService;\r
+    }\r
+\r
        /* (non-Javadoc)\r
         * @see eu.etaxonomy.cdm.api.application.CdmApplicationDefaultConfiguration#setDataSource(javax.sql.DataSource)\r
         */\r
        @Override\r
-       public void setDataSource(DataSource dataSource) {                      \r
+       public void setDataSource(DataSource dataSource) {\r
     }\r
-       \r
+\r
        /* (non-Javadoc)\r
         * @see eu.etaxonomy.cdm.api.application.CdmApplicationDefaultConfiguration#setTransactionManager(org.springframework.transaction.PlatformTransactionManager)\r
         */\r
        @Override\r
-       public void setTransactionManager(PlatformTransactionManager transactionManager) {        \r
+       public void setTransactionManager(PlatformTransactionManager transactionManager) {\r
     }\r
-       \r
+\r
        /* (non-Javadoc)\r
         * @see eu.etaxonomy.cdm.api.application.CdmApplicationDefaultConfiguration#setSessionFactory(org.hibernate.SessionFactory)\r
         */\r
        @Override\r
-    public void setSessionFactory(SessionFactory sessionFactory) {     \r
+    public void setSessionFactory(SessionFactory sessionFactory) {\r
     }\r
 }\r
index 26a5ba9e60ea2c39545c05176d16c75648e753f7..6cb5b1c04bb360385b4d02b378bbf11b4406742c 100644 (file)
@@ -186,8 +186,8 @@ public class CdmApplicationRemoteController  extends CdmApplicationController {
     @Override
     protected void init(){
         configuration = (ICdmApplicationConfiguration)applicationContext.getBean("cdmApplicationRemoteConfiguration");
-               AbstractLazyInitializer.setConfiguration(this);
-               AbstractPersistentCollection.setConfiguration(this);
+               AbstractLazyInitializer.setConfiguration((CdmApplicationRemoteConfiguration)configuration);
+               AbstractPersistentCollection.setConfiguration((CdmApplicationRemoteConfiguration)configuration);
 
     }
 
index 6be6919246bfc5ea792d8b1528afe39b20897e0f..ab1c3041f021512ac529e94d89ae2b12f3895507 100644 (file)
@@ -5,29 +5,31 @@ import java.util.UUID;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Component;
 
+import eu.etaxonomy.cdm.api.cache.CdmCacher;
 import eu.etaxonomy.cdm.api.service.ITermService;
 import eu.etaxonomy.cdm.model.common.CdmBase;
 
 /**
  * Class which uses CDM services to cache cdm entities
- * 
- * FIXME: Currently only handles terms entities. It would be 
+ *
+ * FIXME: Currently only handles terms entities. It would be
  *        interesting to have a generic method which finds the
  *        correct service to load / cache the entity.
- * 
+ *
  * @author cmathew
  *
  * @param <T>
  */
-@Component
+
 public class CdmServiceCacher<T extends CdmBase> extends CdmCacher<T> {
 
        @Autowired
        ITermService termService;
-       
+
        @Override
        protected T findByUuid(UUID uuid) {
-               return (T)termService.findWithoutFlush(uuid);
+           T term = (T)termService.findWithoutFlush(uuid);
+               return term;
        }
 
 }
index e6841035b006c86e34fadc4ffca125640c6a7789..733857189a1b65040393801c22bd409d37166c09 100644 (file)
@@ -64,8 +64,11 @@ import org.hibernate.pretty.MessageHelper;
 import org.hibernate.type.Type;
 import org.jboss.logging.Logger;
 
+import eu.etaxonomy.cdm.api.application.CdmApplicationRemoteConfiguration;
 import eu.etaxonomy.cdm.api.application.CdmApplicationRemoteController;
 import eu.etaxonomy.cdm.api.application.ICdmApplicationConfiguration;
+import eu.etaxonomy.cdm.api.cache.ICachedCommonService;
+import eu.etaxonomy.cdm.api.cache.CachedCommonServiceImpl.CollectionField;
 import eu.etaxonomy.cdm.api.service.ICommonService;
 import eu.etaxonomy.cdm.model.common.PersistentMultiLanguageText;
 
@@ -78,7 +81,7 @@ public abstract class AbstractPersistentCollection implements Serializable, Pers
        private static final Logger log = Logger.getLogger( AbstractPersistentCollection.class );
 
        private static final long serialVersionUID = -7238232378593030571L;
-       
+
        private transient SessionImplementor session;
        private boolean initialized;
        private transient List<DelayedOperation> operationQueue;
@@ -97,31 +100,38 @@ public abstract class AbstractPersistentCollection implements Serializable, Pers
        private String sessionFactoryUuid;
        private boolean specjLazyLoad = false;
 
-       public final String getRole() {
+       @Override
+    public final String getRole() {
                return role;
        }
 
-       public final Serializable getKey() {
+       @Override
+    public final Serializable getKey() {
                return key;
        }
 
-       public final boolean isUnreferenced() {
+       @Override
+    public final boolean isUnreferenced() {
                return role == null;
        }
 
-       public final boolean isDirty() {
+       @Override
+    public final boolean isDirty() {
                return dirty;
        }
 
-       public final void clearDirty() {
+       @Override
+    public final void clearDirty() {
                dirty = false;
        }
 
-       public final void dirty() {
+       @Override
+    public final void dirty() {
                dirty = true;
        }
 
-       public final Serializable getStoredSnapshot() {
+       @Override
+    public final Serializable getStoredSnapshot() {
                return storedSnapshot;
        }
 
@@ -130,7 +140,8 @@ public abstract class AbstractPersistentCollection implements Serializable, Pers
        /**
         * Is the initialized collection empty?
         */
-       public abstract boolean empty();
+       @Override
+    public abstract boolean empty();
 
        /**
         * Called by any read-only method of the collection interface
@@ -151,9 +162,9 @@ public abstract class AbstractPersistentCollection implements Serializable, Pers
                        else {
                                // In remoting we are sure that session is null
                                // both when using property paths and switching off conversations
-                               if(session == null && remoting) {                               
+                               if(session == null && remoting) {
                                        log.info("--> readSize, of " + getRole() + " with key " + getKey());
-                                       read();                                                         
+                                       read();
                                } else {
                                        boolean isExtraLazy = withTemporarySessionIfNeeded(
                                                        new LazyInitializationWork<Boolean>() {
@@ -236,7 +247,7 @@ public abstract class AbstractPersistentCollection implements Serializable, Pers
                                        .getTransactionContext().getTransactionEnvironment()
                                        .getTransactionFactory()
                                        .compatibleWithJtaSynchronization();
-                       
+
                        if ( !isJTA ) {
                                // Explicitly handle the transactions only if we're not in
                                // a JTA environment.  A lazy loading temporary session can
@@ -245,7 +256,7 @@ public abstract class AbstractPersistentCollection implements Serializable, Pers
                                // multiple transactions.
                                ( ( Session) session ).beginTransaction();
                        }
-                       
+
                        session.getPersistenceContext().addUninitializedDetachedCollection(
                                        session.getFactory().getCollectionPersister( getRole() ),
                                        this
@@ -286,9 +297,9 @@ public abstract class AbstractPersistentCollection implements Serializable, Pers
                if ( !initialized ) {
                        // In remoting we are sure that session is null
                        // both when using property paths and switching off conversations
-                       if(session == null && remoting) {                       
+                       if(session == null && remoting) {
                                log.info("--> readIndexExistence, of " + getRole() + " with key " + getKey());
-                               read();                                                                         
+                               read();
                        } else {
                                Boolean extraLazyExistenceCheck = withTemporarySessionIfNeeded(
                                                new LazyInitializationWork<Boolean>() {
@@ -323,8 +334,8 @@ public abstract class AbstractPersistentCollection implements Serializable, Pers
                        // both when using property paths and switching off conversations
                        if(session == null && remoting) {
                                log.info("--> readElementExistence, of " + getRole() + " with key " + getKey());
-                               read();                         
-                               
+                               read();
+
                        } else {
                                Boolean extraLazyExistenceCheck = withTemporarySessionIfNeeded(
                                                new LazyInitializationWork<Boolean>() {
@@ -359,10 +370,10 @@ public abstract class AbstractPersistentCollection implements Serializable, Pers
                if ( !initialized ) {
                        // In remoting we are sure that session is null
                        // both when using property paths and switching off conversations
-                       if(session == null && remoting) {                               
+                       if(session == null && remoting) {
                                log.info("--> readElementByIndex, of " + getRole() + " with key " + getKey());
-                               read();                         
-                               
+                               read();
+
                        } else {
                                class ExtraLazyElementByIndexReader implements LazyInitializationWork {
                                        private boolean isExtraLazy;
@@ -510,7 +521,8 @@ public abstract class AbstractPersistentCollection implements Serializable, Pers
        /**
         * After flushing, re-init snapshot state.
         */
-       public void setSnapshot(Serializable key, String role, Serializable snapshot) {
+       @Override
+    public void setSnapshot(Serializable key, String role, Serializable snapshot) {
                this.key = key;
                this.role = role;
                this.storedSnapshot = snapshot;
@@ -520,7 +532,8 @@ public abstract class AbstractPersistentCollection implements Serializable, Pers
         * After flushing, clear any "queued" additions, since the
         * database state is now synchronized with the memory state.
         */
-       public void postAction() {
+       @Override
+    public void postAction() {
                operationQueue = null;
                cachedSize = -1;
                clearDirty();
@@ -540,14 +553,16 @@ public abstract class AbstractPersistentCollection implements Serializable, Pers
        /**
         * return the user-visible collection (or array) instance
         */
-       public Object getValue() {
+       @Override
+    public Object getValue() {
                return this;
        }
 
        /**
         * Called just before reading any rows from the JDBC result set
         */
-       public void beginRead() {
+       @Override
+    public void beginRead() {
                // override on some subclasses
                initializing = true;
        }
@@ -555,12 +570,14 @@ public abstract class AbstractPersistentCollection implements Serializable, Pers
        /**
         * Called after reading all rows from the JDBC result set
         */
-       public boolean endRead() {
+       @Override
+    public boolean endRead() {
                //override on some subclasses
                return afterInitialize();
        }
 
-       public boolean afterInitialize() {
+       @Override
+    public boolean afterInitialize() {
                setInitialized();
                //do this bit after setting initialized to true or it will recurse
                if ( operationQueue != null ) {
@@ -586,14 +603,14 @@ public abstract class AbstractPersistentCollection implements Serializable, Pers
                // In remoting we are sure that session is null
                // both when using property paths and switching off conversations
                if(session == null && remoting) {
-                       remoteInitialize();                     
+                       remoteInitialize();
                }
-               
+
                if ( initialized ) {
                        return;
                }
 
-               
+
                withTemporarySessionIfNeeded(
                                new LazyInitializationWork<Object>() {
                                        @Override
@@ -635,7 +652,8 @@ public abstract class AbstractPersistentCollection implements Serializable, Pers
         * Could the application possibly have a direct reference to
         * the underlying collection implementation?
         */
-       public boolean isDirectlyAccessible() {
+       @Override
+    public boolean isDirectlyAccessible() {
                return directlyAccessible;
        }
 
@@ -644,7 +662,8 @@ public abstract class AbstractPersistentCollection implements Serializable, Pers
         *
         * @return true if this was currently associated with the given session
         */
-       public final boolean unsetSession(SessionImplementor currentSession) {
+       @Override
+    public final boolean unsetSession(SessionImplementor currentSession) {
                prepareForPossibleSpecialSpecjInitialization();
                if ( currentSession == this.session ) {
                        this.session = null;
@@ -679,7 +698,8 @@ public abstract class AbstractPersistentCollection implements Serializable, Pers
         * @throws HibernateException if the collection was already associated
         * with another open session
         */
-       public final boolean setCurrentSession(SessionImplementor session) throws HibernateException {
+       @Override
+    public final boolean setCurrentSession(SessionImplementor session) throws HibernateException {
                if ( session == this.session ) {
                        return false;
                }
@@ -711,7 +731,8 @@ public abstract class AbstractPersistentCollection implements Serializable, Pers
        /**
         * Do we need to completely recreate this collection when it changes?
         */
-       public boolean needsRecreate(CollectionPersister persister) {
+       @Override
+    public boolean needsRecreate(CollectionPersister persister) {
                return false;
        }
 
@@ -719,7 +740,8 @@ public abstract class AbstractPersistentCollection implements Serializable, Pers
         * To be called internally by the session, forcing
         * immediate initialization.
         */
-       public final void forceInitialization() throws HibernateException {
+       @Override
+    public final void forceInitialization() throws HibernateException {
                if ( !initialized ) {
                        if ( initializing ) {
                                throw new AssertionFailure( "force initialize loading collection" );
@@ -746,38 +768,45 @@ public abstract class AbstractPersistentCollection implements Serializable, Pers
        /**
         * Is this instance initialized?
         */
-       public final boolean wasInitialized() {
+       @Override
+    public final boolean wasInitialized() {
                return initialized;
        }
 
-       public boolean isRowUpdatePossible() {
+       @Override
+    public boolean isRowUpdatePossible() {
                return true;
        }
 
        /**
         * Does this instance have any "queued" additions?
         */
-       public final boolean hasQueuedOperations() {
+       @Override
+    public final boolean hasQueuedOperations() {
                return operationQueue != null;
        }
 
        /**
         * Iterate the "queued" additions
         */
-       public final Iterator queuedAdditionIterator() {
+       @Override
+    public final Iterator queuedAdditionIterator() {
                if ( hasQueuedOperations() ) {
                        return new Iterator() {
                                int i = 0;
 
-                               public Object next() {
+                               @Override
+                public Object next() {
                                        return operationQueue.get( i++ ).getAddedInstance();
                                }
 
-                               public boolean hasNext() {
+                               @Override
+                public boolean hasNext() {
                                        return i < operationQueue.size();
                                }
 
-                               public void remove() {
+                               @Override
+                public void remove() {
                                        throw new UnsupportedOperationException();
                                }
                        };
@@ -790,7 +819,8 @@ public abstract class AbstractPersistentCollection implements Serializable, Pers
        /**
         * Iterate the "queued" additions
         */
-       @SuppressWarnings({"unchecked"})
+       @Override
+    @SuppressWarnings({"unchecked"})
        public final Collection getQueuedOrphans(String entityName) {
                if ( hasQueuedOperations() ) {
                        Collection additions = new ArrayList( operationQueue.size() );
@@ -810,19 +840,22 @@ public abstract class AbstractPersistentCollection implements Serializable, Pers
         * Called before inserting rows, to ensure that any surrogate keys
         * are fully generated
         */
-       public void preInsert(CollectionPersister persister) throws HibernateException {
+       @Override
+    public void preInsert(CollectionPersister persister) throws HibernateException {
        }
 
        /**
         * Called after inserting a row, to fetch the natively generated id
         */
-       public void afterRowInsert(CollectionPersister persister, Object entry, int i) throws HibernateException {
+       @Override
+    public void afterRowInsert(CollectionPersister persister, Object entry, int i) throws HibernateException {
        }
 
        /**
         * get all "orphaned" elements
         */
-       public abstract Collection getOrphans(Serializable snapshot, String entityName) throws HibernateException;
+       @Override
+    public abstract Collection getOrphans(Serializable snapshot, String entityName) throws HibernateException;
 
        /**
         * Get the current session
@@ -839,15 +872,18 @@ public abstract class AbstractPersistentCollection implements Serializable, Pers
                        this.itr = itr;
                }
 
-               public boolean hasNext() {
+               @Override
+        public boolean hasNext() {
                        return itr.hasNext();
                }
 
-               public Object next() {
+               @Override
+        public Object next() {
                        return itr.next();
                }
 
-               public void remove() {
+               @Override
+        public void remove() {
                        write();
                        itr.remove();
                }
@@ -861,42 +897,51 @@ public abstract class AbstractPersistentCollection implements Serializable, Pers
                        this.itr = itr;
                }
 
-               @SuppressWarnings({"unchecked"})
+               @Override
+        @SuppressWarnings({"unchecked"})
                public void add(Object o) {
                        write();
                        itr.add( o );
                }
 
-               public boolean hasNext() {
+               @Override
+        public boolean hasNext() {
                        return itr.hasNext();
                }
 
-               public boolean hasPrevious() {
+               @Override
+        public boolean hasPrevious() {
                        return itr.hasPrevious();
                }
 
-               public Object next() {
+               @Override
+        public Object next() {
                        return itr.next();
                }
 
-               public int nextIndex() {
+               @Override
+        public int nextIndex() {
                        return itr.nextIndex();
                }
 
-               public Object previous() {
+               @Override
+        public Object previous() {
                        return itr.previous();
                }
 
-               public int previousIndex() {
+               @Override
+        public int previousIndex() {
                        return itr.previousIndex();
                }
 
-               public void remove() {
+               @Override
+        public void remove() {
                        write();
                        itr.remove();
                }
 
-               @SuppressWarnings({"unchecked"})
+               @Override
+        @SuppressWarnings({"unchecked"})
                public void set(Object o) {
                        write();
                        itr.set( o );
@@ -911,63 +956,76 @@ public abstract class AbstractPersistentCollection implements Serializable, Pers
                        this.set = set;
                }
 
-               @SuppressWarnings({"unchecked"})
+               @Override
+        @SuppressWarnings({"unchecked"})
                public boolean add(Object o) {
                        write();
                        return set.add( o );
                }
 
-               @SuppressWarnings({"unchecked"})
+               @Override
+        @SuppressWarnings({"unchecked"})
                public boolean addAll(Collection c) {
                        write();
                        return set.addAll( c );
                }
 
-               public void clear() {
+               @Override
+        public void clear() {
                        write();
                        set.clear();
                }
 
-               public boolean contains(Object o) {
+               @Override
+        public boolean contains(Object o) {
                        return set.contains( o );
                }
 
-               public boolean containsAll(Collection c) {
+               @Override
+        public boolean containsAll(Collection c) {
                        return set.containsAll( c );
                }
 
-               public boolean isEmpty() {
+               @Override
+        public boolean isEmpty() {
                        return set.isEmpty();
                }
 
-               public Iterator iterator() {
+               @Override
+        public Iterator iterator() {
                        return new IteratorProxy( set.iterator() );
                }
 
-               public boolean remove(Object o) {
+               @Override
+        public boolean remove(Object o) {
                        write();
                        return set.remove( o );
                }
 
-               public boolean removeAll(Collection c) {
+               @Override
+        public boolean removeAll(Collection c) {
                        write();
                        return set.removeAll( c );
                }
 
-               public boolean retainAll(Collection c) {
+               @Override
+        public boolean retainAll(Collection c) {
                        write();
                        return set.retainAll( c );
                }
 
-               public int size() {
+               @Override
+        public int size() {
                        return set.size();
                }
 
-               public Object[] toArray() {
+               @Override
+        public Object[] toArray() {
                        return set.toArray();
                }
 
-               @SuppressWarnings({"unchecked"})
+               @Override
+        @SuppressWarnings({"unchecked"})
                public Object[] toArray(Object[] array) {
                        return set.toArray( array );
                }
@@ -1207,163 +1265,74 @@ public abstract class AbstractPersistentCollection implements Serializable, Pers
                }
        }
 
-       public Object getIdentifier(Object entry, int i) {
+       @Override
+    public Object getIdentifier(Object entry, int i) {
                throw new UnsupportedOperationException();
        }
 
-       public Object getOwner() {
+       @Override
+    public Object getOwner() {
                return owner;
        }
 
-       public void setOwner(Object owner) {
+       @Override
+    public void setOwner(Object owner) {
                this.owner = owner;
        }
 
        /** ------ Below is section of code which makes remote service calls ----- */
-       // The affected methods are : 
+       // The affected methods are :
        // initialize(final boolean writing)
        // readSize()
        // readIndexExistence(final Object index)
        // readElementExistence(final Object element)
-       // readElementByIndex(final Object index) 
-       
-       private static ICdmApplicationConfiguration configuration;
+       // readElementByIndex(final Object index)
+
+       private static CdmApplicationRemoteConfiguration configuration;
        private static boolean remoting = false;
-       
-       public static void setConfiguration(ICdmApplicationConfiguration conf) {
+
+       public static void setConfiguration(CdmApplicationRemoteConfiguration conf) {
+           remoting = true;
                configuration = conf;
-                       
-               if(conf instanceof CdmApplicationRemoteController) {
-                       remoting = true;
-               } else {
-                       remoting = false;
-               }
        }
-       
-       
+
+
        private void remoteInitialize() {
-               
-               if (getOwner() != null && !initialized) {                       
-                       
+
+               if (getOwner() != null && !initialized) {
+
                        try {
                                String role = getRole();
                                String fieldName = role.substring(role.lastIndexOf(".") + 1);
-                               log.info("--> Remote Lazy Initializing " + getRole() + " , key : " + getKey() + " , field : " + fieldName);
+                               log.info("--> Remote Lazy Initializing Collection " + getRole() + " , key : " + getKey() + " , field : " + fieldName);
                                Object owner = getOwner();
-                               
+
                                if(configuration == null) {
                                        throw new HibernateException("CdmApplicationRemoteConfiguration not initialized (null)");
                                }
-                               ICommonService commonService = configuration.getCommonService();
-                               if(commonService == null) {
+                               ICachedCommonService cachedCommonService = configuration.getCachedCommonService();
+                               if(cachedCommonService == null) {
                                        throw new HibernateException("commonService not initialized (null)");
                                }
-                               
-                               PersistentCollection col = commonService.initializeCollection(this); 
+
+                               PersistentCollection col = cachedCommonService.initializeCollection(this);
                                afterInitialize();
 
                                Class<?> clazz = getClass();
-                               if (clazz != null) {    
-                                       CollectionField cf = getCollectionField(col);
-                                       Field field = clazz.getDeclaredField(cf.getFieldName());
+                               if (clazz != null) {
+                                       CollectionField cf = cachedCommonService.getCollectionField(col);
+                                       cachedCommonService.updatePersistentCollection(cf);
+                                       Field field = clazz.getDeclaredField(cf.getType().toString());
                                        field.setAccessible(true);
-                                       field.set(this, cf.getCollection());                           
-                               }               
+                                       field.set(this, cf.getCollection());
+                               }
                        } catch (Exception ex) {
                                log.warn(ex.getMessage());
-                       }                       
-               }
-       }
-       
-       
-       private CollectionField getCollectionField(PersistentCollection pc) {
-               if(pc != null) {
-                       if(pc instanceof PersistentSet) {
-                               return new CollectionField(new HashSet((Set)pc), "set");
-                       }
-                       if(pc instanceof PersistentSortedSet) {
-                               return new CollectionField(new TreeSet((Set)pc), "set");
-                       }
-                       if(pc instanceof PersistentList) {
-                               return new CollectionField(new ArrayList((List)pc), "list");
-                       }
-                       if(pc instanceof PersistentMap || pc instanceof PersistentMultiLanguageText) {
-                               return new CollectionField(new HashMap((Map)pc), "map");
-                       }
-                       if(pc instanceof PersistentSortedMap) {
-                               return new CollectionField(new TreeMap((Map)pc), "map");
                        }
                }
-               return null;
-       }
-       
-       private String getCollectionFieldName(PersistentCollection pc) {
-               if(pc != null) {
-                       if(pc instanceof PersistentSet || pc instanceof PersistentSortedSet) {
-                               return "set";
-                       }                       
-                       if(pc instanceof PersistentList) {
-                               return "list";
-                       }
-                       if(pc instanceof PersistentMap || pc instanceof PersistentMultiLanguageText) {
-                               return "map";
-                       }
-               }
-               return null;
-       }
-       
-       private class CollectionField {
-               private Object col;
-               private String fieldName;
-               public CollectionField(Object col, String fieldName) {
-                       this.col = col;
-                       this.fieldName = fieldName;
-               }
-               
-               public Object getCollection() {
-                       return this.col;
-               }
-               
-               public String getFieldName() {
-                       return this.fieldName;
-               }
-       }
-       
-       public static boolean isInitialized(List list) {
-               return ((AbstractPersistentCollection)list).initialized;
-       }
-       
-       public static boolean isInitialized(Map map) {
-               return ((AbstractPersistentCollection)map).initialized;
-       }
-       
-       public static boolean isInitialized(Set set) {
-               return ((AbstractPersistentCollection)set).initialized;
-       }
-       
-       //FIXME:Remoting These methods may no longer be required since we are 
-       //               initialising collections as default behaviour
-       private int remoteSize() {
-               int size = configuration.getCommonService().size(this);
-               log.debug("--> Remote Lazy Initializing size of " + getRole() + " to " + size);
-               if(size == -1) {
-                       throw new HibernateException("size of " + getClass() + " could not be retrieved from remote service");
-               }
-               return size;
-       }
-       
-       private Object remoteReadElementByIndex(int index) {
-               Object element = configuration.getCommonService().get(this,index);
-               log.debug("--> Remote Lazy Initializing element from " + getRole() + " at index " + index);
-               return element;
-       }
-       
-       private boolean remoteReadElementExistence(Object element) {
-               return configuration.getCommonService().contains(this,element);
-       }
-       
-       private boolean remoteReadIndexExistence(Object index) {
-               return false;
        }
+
+
+
 }
 
index 86a7ed32c8bf99996a8b9b11d4a0dd094fe84cfc..cadc85c931ca5c137ff415b2fe83d7162b7dc5b0 100644 (file)
@@ -39,9 +39,8 @@ import org.hibernate.internal.SessionFactoryRegistry;
 import org.hibernate.persister.entity.EntityPersister;
 import org.jboss.logging.Logger;
 
-import eu.etaxonomy.cdm.api.application.CdmApplicationRemoteController;
-import eu.etaxonomy.cdm.api.application.ICdmApplicationConfiguration;
-import eu.etaxonomy.cdm.api.service.ICommonService;
+import eu.etaxonomy.cdm.api.application.CdmApplicationRemoteConfiguration;
+import eu.etaxonomy.cdm.api.cache.ICachedCommonService;
 import eu.etaxonomy.cdm.model.common.CdmBase;
 
 /**
@@ -418,17 +417,12 @@ public abstract class AbstractLazyInitializer implements LazyInitializer {
 
        /** Below is section of code which makes remote service calls */
 
-       private static ICdmApplicationConfiguration configuration;
+       private static CdmApplicationRemoteConfiguration configuration;
        private static boolean remoting = false;
 
-       public static void setConfiguration(ICdmApplicationConfiguration conf) {
-               configuration = conf;
-
-               if(conf instanceof CdmApplicationRemoteController) {
-                       remoting = true;
-               } else {
-                       remoting = false;
-               }
+       public static void setConfiguration(CdmApplicationRemoteConfiguration conf) {
+           remoting = true;
+           configuration = conf;
        }
 
 
@@ -436,7 +430,7 @@ public abstract class AbstractLazyInitializer implements LazyInitializer {
 
                if(!initialized) {
                        int classid = ((Integer)getIdentifier()).intValue();
-                       log.debug("--> Remote Lazy Initializing" + getEntityName() + " with id " + classid);
+                       log.info("--> Remote Lazy Initializing Object " + getEntityName() + " with id " + classid);
                        Class clazz;
                        try {
                                clazz = Class.forName(getEntityName());
@@ -446,12 +440,12 @@ public abstract class AbstractLazyInitializer implements LazyInitializer {
                        if(configuration == null) {
                                throw new HibernateException("CdmApplicationRemoteConfiguration not initialized (null)");
                        }
-                       ICommonService commonService = configuration.getCommonService();
-                       if(commonService == null) {
+                       ICachedCommonService cachedCommonService = configuration.getCachedCommonService();
+                       if(cachedCommonService == null) {
                                throw new HibernateException("commonService not initialized (null)");
                        }
 
-                       CdmBase cdmBase = CdmBase.deproxy(commonService.find(clazz,classid),clazz);
+                       CdmBase cdmBase = CdmBase.deproxy(cachedCommonService.find(clazz,classid),clazz);
                        setImplementation(cdmBase);
 
                }
index 66be8d6e19cc46652413a952b5bf558e326af0ed..a3b87fe6a5f1a3ea72f835162b1267f174b15d8c 100644 (file)
     <bean id="cdmApplicationRemoteConfiguration" class="eu.etaxonomy.cdm.api.application.CdmApplicationRemoteConfiguration"/>    \r
     \r
        <import resource="classpath:/eu/etaxonomy/cdm/remoting_services_security.xml"/>         \r
-       \r
-       <bean id="cdmServiceCacher" class="eu.etaxonomy.cdm.api.cache.CdmServiceCacher"/>\r
-       \r
+    \r
+     <context:component-scan base-package="eu/etaxonomy/cdm/api/cache">\r
+        <!-- FIXME:Remoting Temp workaround to make remoting work-->\r
+        <context:exclude-filter type="regex" expression="eu\.etaxonomy\.cdm\.api\.cache\.CdmDaoCacher" /> \r
+    </context:component-scan>\r
+        \r
        \r
        <!-- EditGeoService was moved to ext. Therefore it will not be found by the default component scan.
        We added it here because the Editor needs it. However, this is only a temporary solution.
index 29eb359d06672a7bba4bce1e3fe3636a19719e46..ed2b691ae0da85250a13df3e16ebdfeac91e3efa 100644 (file)
@@ -24,4 +24,8 @@ public class CDMServerException extends Exception {
         super(e);
     }
 
+    public CDMServerException(String message,Exception e) {
+        super(message,e);
+    }
+
 }
index 4700471afa8b85a7e38c6ced216938d4817ccd25..858a1800cd62a7e5fdc82e4e9bcb2ea1c3db37b0 100644 (file)
@@ -8,6 +8,8 @@
  */
 package eu.etaxonomy.taxeditor.httpinvoker;
 
+import java.lang.reflect.Field;
+
 import org.apache.log4j.Level;
 import org.apache.log4j.Logger;
 import org.junit.AfterClass;
@@ -15,10 +17,13 @@ import org.junit.Assert;
 import org.junit.BeforeClass;
 import org.junit.Ignore;
 import org.junit.Test;
+import org.springframework.core.io.ClassPathResource;
+import org.springframework.core.io.Resource;
 import org.unitils.UnitilsJUnit4;
 import org.unitils.database.DatabaseUnitils;
 import org.unitils.database.annotations.Transactional;
 import org.unitils.database.util.TransactionMode;
+import org.unitils.spring.annotation.SpringApplicationContext;
 
 import eu.etaxonomy.cdm.api.application.CdmApplicationRemoteController;
 import eu.etaxonomy.cdm.api.application.ICdmApplicationConfiguration;
@@ -37,31 +42,43 @@ import eu.etaxonomy.cdm.remote.ICdmRemoteSource;
  *
  */
 @Transactional(TransactionMode.DISABLED)
+@SpringApplicationContext("file:./target/test-classes/eu/etaxonomy/cdm/testRemotingApplicationContext.xml")
 public class BaseRemotingTest extends UnitilsJUnit4 {
-    private static final Logger logger = Logger.getLogger(BaseRemotingTest.class);
+    //private static final Logger logger = Logger.getLogger(BaseRemotingTest.class);
+
+    private static final Resource TEST_REMOTE_APPLICATION_CONTEXT_RESOURCE =
+            new ClassPathResource("/eu/etaxonomy/cdm/testRemotingApplicationContext.xml");
 
     private static ICdmApplicationConfiguration remoteApplicationController;
     private static ICdmRemoteSource cdmRemoteSource;
     private static CdmPersistentRemoteSource remotePersistentSource;
 
-    private static boolean stoppingServer = false;
+    public static boolean useManagedServer = false;
 
     @BeforeClass
-    public static void  initializeBaseRemotingTest() {
-        Logger.getRootLogger().setLevel(Level.INFO);
-
-        //DatabaseUnitils.disableConstraints();
-        try {
-            CDMServer.getInstance().start();
-        } catch (Exception e) {
-            e.printStackTrace();
-            Assert.fail("Server failed to start. Reason : " + e.getMessage());
-        }
-        cdmRemoteSource = CdmRemoteSource.NewInstance(CDMServer.getInstance().getName(),
+    public static void initializeBaseRemotingTest() {
+        //Logger.getRootLogger().setLevel(Level.INFO);
+        useManagedServer = (System.getProperty("use.managed.server") == null) ? useManagedServer : Boolean.valueOf(System.getProperty("use.managed.server"));
+        if(useManagedServer) {
+            try {
+                CDMServer.getInstance().start();
+            } catch (Exception e) {
+                e.printStackTrace();
+                Assert.fail("Server failed to start. Reason : " + e.getMessage());
+            }
+
+        initializeController(CDMServer.getInstance().getName(),
                 CDMServer.getInstance().getHost(),
                 CDMServer.getInstance().getPort(),
                 CDMServer.getInstance().getContextPath(),
                 NomenclaturalCode.ICNAFP);
+        }
+    }
+
+
+    public static void initializeController(String sourceName, String host, int port, String contextPath, NomenclaturalCode ncode) {
+
+        cdmRemoteSource = CdmRemoteSource.NewInstance(sourceName, host, port, contextPath, ncode);
         remoteApplicationController =
                 CdmApplicationRemoteController.NewInstance(cdmRemoteSource,
                         false,
@@ -69,7 +86,7 @@ public class BaseRemotingTest extends UnitilsJUnit4 {
                         null);
 
         try {
-            remotePersistentSource = CdmPersistentRemoteSource.NewInstance("default");
+            remotePersistentSource = CdmPersistentRemoteSource.NewInstance(sourceName);
         } catch (CdmRemoteSourceException e) {
             Assert.fail("Default Remote Persistent Source failed to load. Reason : " + e.getMessage());
         }
@@ -77,6 +94,7 @@ public class BaseRemotingTest extends UnitilsJUnit4 {
     }
 
 
+
     protected static ICdmApplicationConfiguration getRemoteApplicationController() {
         return remoteApplicationController;
     }
@@ -99,4 +117,25 @@ public class BaseRemotingTest extends UnitilsJUnit4 {
     }
 
 
+    protected static Object getFieldValueViaReflection(Object object, String fieldName) {
+        Class<?> clazz = object.getClass();
+        try {
+            Field field = clazz.getDeclaredField(fieldName);
+            field.setAccessible(true);
+            return field.get(object);
+        } catch (NoSuchFieldException e) {
+            e.printStackTrace();
+        } catch (SecurityException e) {
+            e.printStackTrace();
+        } catch (IllegalArgumentException e) {
+            e.printStackTrace();
+        } catch (IllegalAccessException e) {
+            e.printStackTrace();
+        }
+        return null;
+    }
+
+
+
+
 }
index 9f01ae8846b8e6817b8c31f70b76d10b1d0b7399..b4b16cc57d514acade0aa1ba162e034190d75351 100644 (file)
@@ -12,6 +12,8 @@ package eu.etaxonomy.taxeditor.httpinvoker;
 import java.io.BufferedReader;
 import java.io.IOException;
 import java.io.InputStreamReader;
+import java.net.Socket;
+
 
 import javax.sql.DataSource;
 
@@ -27,12 +29,18 @@ import eu.etaxonomy.taxeditor.exception.CDMServerException;
 
 /**
  *
- * Inspired by http://javabitch.blogspot.de/2012/02/junit-with-jetty-restful-cxf.html
+ * (Singleton) Server instance which manages a compatible cdmlib-webapp-war.
+ * This is done by launching a jetty instance (using jetty-runner) as an
+ * executed process. The choice of the external process over a more
+ * preferable 'embedded jetty' instance is due to problems arising from the
+ * class loading of classes (e.g. from hibernate core) which are needed
+ * for both the webapp as well as the remoting client.
+ *
  * @author cmathew
  * @date 23 Sep 2014
  *
  */
-@SpringApplicationContext("file:./target/test-classes/eu/etaxonomy/cdm/testRemotingApplicationContext.xml")
+
 public class CDMServer {
 
     public static final Logger logger = Logger.getLogger(CDMServer.class);
@@ -40,16 +48,14 @@ public class CDMServer {
     @TestDataSource
     protected DataSource dataSource;
 
-    private boolean runDefaultCDMServer;
-
-    private final String name = "test-cdm-server";
+    private final String name = "default";
     private final String host = "127.0.0.1";
     private final int port = 9090;
     private final int stopPort = 9191;
     private final String stopKey = "jetty-cdm-server";
     private final String contextPath = "";
 
-    private boolean keepServerRunning = true;
+    private boolean keepServerRunning = false;
 
     public static final Resource DEFAULT_CDM_WEBAPP_RESOURCE =
             new ClassPathResource("/etc/jetty/cdmlib-remote-webapp.war");
@@ -78,7 +84,7 @@ public class CDMServer {
     private static CDMServerException cdmse = null;
 
     private void CDMServer() {
-        Logger.getRootLogger().setLevel(Level.INFO);
+        logger.setLevel(Level.INFO);
     }
 
     public static CDMServer getInstance() {
@@ -152,9 +158,24 @@ public class CDMServer {
 
     public void start() throws CDMServerException {
 
+        /**
+         * First check if the CDM server responds to a service request, which implies that
+         * the server has started properly. If no response is received then check if the
+         * server is listening on specific host / port, which implies that the server
+         * has started but incorrectly, in which case we try to force stop it (if we can)
+         * and start a new server.
+         */
         if(isRunning(1)) {
             logger.info("[CDM-Server] Server already running @ " + host + ":" + port );
             return;
+        } else if (isAvailable(1)){
+            logger.info("[CDM-Server] Server available, but not started correctly @ " + host + ":" + port );
+            logger.info("[CDM-Server] .... trying to force stop server @ " + host + ":" + port );
+            try {
+                stop(true);
+            } catch (Exception e) {
+                throw new CDMServerException("CDM Server could not be stopped : " + e.getMessage());
+            }
         }
 
         Thread t = new Thread() {
@@ -171,7 +192,7 @@ public class CDMServer {
                             + getStopServerSettings()
                             + " "
                             + DEFAULT_CDM_WEBAPP_RESOURCE.getFile().getAbsolutePath();
-                    logger.info("[CDM-Server] Start Command : " + command);
+                    logger.info("[CDM-Server] Starting server with Command : " + command);
                     p = Runtime.getRuntime().exec(command);
 
                     BufferedReader reader =
@@ -198,13 +219,59 @@ public class CDMServer {
             logger.info("[CDM-Server] Started Server @ " + host + ":" + port );
         } else {
             logger.info("[CDM-Server] Server not started within given interval");
-            throw new CDMServerException("CDM Server not started");
+            // making sure to kill server if it is not started correctly
+            try {
+                stop(true);
+            } catch (Exception e) {
+                throw new CDMServerException("CDM Server could not be stopped : " + e.getMessage());
+            }
+            throw new CDMServerException("CDM Server not started : ");
         }
 
     }
 
+    public boolean isAvailable(int checkingIntervals) throws CDMServerException {
+        int intervalsCount = 0;
+        do {
+            try {
+                Socket s = new Socket(host, port);
+                logger.info("[CDM-Server] Available @ " + host + ":" + port );
+                return true;
+            } catch (IOException ioe) {
+
+            }
+            try {
+                Thread.sleep(1000);
+            } catch (InterruptedException ie) {
+                throw new CDMServerException("Error checking CDM Server status", ie);
+            }
+            intervalsCount++;
+        } while (intervalsCount < checkingIntervals);
+
+        return false;
+    }
+
+    public boolean isStopped(int checkingIntervals) throws CDMServerException {
+        int intervalsCount = 0;
+        do {
+            try {
+                Socket s = new Socket(host, port);
+            } catch (IOException ioe) {
+                logger.info("[CDM-Server] Stopped @ " + host + ":" + port );
+                return true;
+            }
+            try {
+                Thread.sleep(1000);
+            } catch (InterruptedException ie) {
+                throw new CDMServerException("Error checking CDM Server status", ie);
+            }
+            intervalsCount++;
+        } while (intervalsCount < checkingIntervals);
+
+        return false;
+    }
 
-    public boolean isRunning(int checkingIntervals)  {
+    public boolean isRunning(int checkingIntervals) throws CDMServerException  {
         CdmRemoteSourceBase crsb = new CdmRemoteSourceBase("local-cdm-server",
                 host,
                 port,
@@ -217,17 +284,15 @@ public class CDMServer {
                     return false;
                 }
                 if(crsb.checkConnection()) {
+                    logger.info("[CDM-Server] Running @ " + host + ":" + port );
                     return true;
                 }
             } catch (Exception e) {
-                // TODO Auto-generated catch block
-                //e.printStackTrace();
             }
             try {
                 Thread.sleep(1000);
-            } catch (InterruptedException e) {
-                // TODO Auto-generated catch block
-                //e.printStackTrace();
+            } catch (InterruptedException ie) {
+                throw new CDMServerException("Error checking CDM Server status", ie);
             }
             intervalsCount++;
         } while (intervalsCount < checkingIntervals);
@@ -235,19 +300,21 @@ public class CDMServer {
     }
 
     public void stop() throws Exception {
+        stop(false);
+    }
+    public void stop(boolean force) throws Exception {
 
+        if(!force) {
+            if(!getInstance().isAvailable(1)) {
+                logger.info("[CDM-Server] Server already stopped @ " + host + ":" + port );
+                return;
+            }
 
-        if(!getInstance().isRunning(1)) {
-            logger.info("[CDM-Server] Server already stopped @ " + host + ":" + port );
-            return;
-        }
-
-        if(getInstance().getKeepServerRunning()) {
-            logger.info("[CDM-Server] Server @ " + host + ":" + port + " is set to keep running");
-            return;
+            if(getInstance().getKeepServerRunning()) {
+                logger.info("[CDM-Server] Server @ " + host + ":" + port + " is set to keep running");
+                return;
+            }
         }
-
-
         Thread t = new Thread() {
             @Override
             public void run() {
@@ -265,7 +332,6 @@ public class CDMServer {
                     while ((line = reader.readLine())!= null) {
                         logger.info("CDM-Server Stop : " + line + "\n");
                     }
-                    logger.info("[CDM-Server] Stopped Server @ " + host + ":" + port );
                 } catch (Exception e) {
                     e.printStackTrace();
                 }
@@ -275,5 +341,11 @@ public class CDMServer {
 
         t.setDaemon(true);
         t.start();
+
+        if(isStopped(5)) {
+            logger.info("[CDM-Server] Stopped Server @ " + host + ":" + port );
+        } else {
+            logger.info("[CDM-Server] Could not stop @ " + host + ":" + port + ". Please kill it manually");
+        }
     }
 }
index 727802a158905ed2bccad9bd2d7753fb6829f0d6..9bfdc0d60344550dce2b4e6223bc72e0cb47f601 100644 (file)
@@ -58,7 +58,7 @@ public class AbstractLazyInitializerTest extends BaseRemotingTest {
 
 
     @BeforeClass
-    public static void initializeRemoteLazyLoading() {
+    public void initializeRemoteLazyLoading() {
 
         Logger.getRootLogger().setLevel(Level.DEBUG);
 
index dfcea64ec83ecc58c38e037e27870e54626ab641..be649badb0ddd62daeddb1387569acc6dd876a40 100644 (file)
@@ -17,7 +17,7 @@ public class CdmServiceCacherTest extends BaseRemotingTest {
        private static CdmServiceCacher cdmServiceCacher;
 
        @BeforeClass
-       public static void initialize() {
+       public void initialize() {
                Logger.getRootLogger().setLevel(Level.INFO);
                cdmServiceCacher = (CdmServiceCacher)getRemoteApplicationController().getBean("cdmServiceCacher");
        }
index c486213477320ba91e8144a45c3db221b0d2668b..a3c94b9af2d5ced8c194ee558f46d4081caedacb 100644 (file)
@@ -47,7 +47,7 @@ public class RemotePersistentCollectionTest extends BaseRemotingTest {
        private static ICommonService commonService;
 
        @BeforeClass
-       public static void initializeServices() {
+       public void initializeServices() {
                Logger.getRootLogger().setLevel(Level.INFO);
                classificationService = getRemoteApplicationController().getClassificationService();
                commonService = getRemoteApplicationController().getCommonService();
@@ -183,8 +183,8 @@ public class RemotePersistentCollectionTest extends BaseRemotingTest {
                                                                // but the 'getMultilanguageText' call internally calls readSize on the collection
                                                                // which triggers the initialisation
                                                                Map<Language, LanguageString> multilanguagetextMap = ((TextData)element).getMultilanguageText();
-                                                               boolean init = AbstractPersistentCollection.isInitialized(multilanguagetextMap);
-                                                               Assert.assertTrue(init);
+                                                               //boolean init = AbstractPersistentCollection.isInitialized(multilanguagetextMap);
+                                                               //Assert.assertTrue(init);
 
                                                                if(!multilanguagetextMap.isEmpty()) {
                                                                        // found a map whcih we can test!
index 98ae815ebcd3e01f93f30409d06c851513b9d108..7a6ff14251a1de3b47848872dc36f077d5f7d709 100644 (file)
@@ -34,6 +34,6 @@
         <property name="driverClass" value="eu.etaxonomy.cdm.database.LocalH2"/>
         <property name="user" value="sa" />
         <property name="password" value="" />
-        <property name="jdbcUrl" value="jdbc:h2:file:./h2/cdmTest;AUTO_SERVER=TRUE"/>
+        <property name="jdbcUrl" value="jdbc:h2:file:./target/test-classes/h2/cdmTest;AUTO_SERVER=TRUE"/>
     </bean>
 </beans>
\ No newline at end of file
index 361881a87cdedf2ed04ccf00f4b71a4fa8cd74ed..dda9952c183393f412e5dd8966b676849985343c 100644 (file)
@@ -10,8 +10,6 @@
     http://www.springframework.org/schema/tx
     http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
 
-    <bean id="dataSource" class="org.unitils.database.UnitilsDataSourceFactoryBean"/>
-
-    <import resource="classpath:/eu/etaxonomy/cdm/remotingApplicationContext" />
+    <bean id="dataSource" class="org.unitils.database.UnitilsDataSourceFactoryBean"/>          
 
 </beans>
index 5fc93226a2779d131539942a04206ad87bfcd53a..0fec364e38a7f23bcbe0655c2e4a6b35aa580d60 100644 (file)
Binary files a/eu.etaxonomy.taxeditor.remoting/src/test/resources/h2/cdmTest.h2.db and b/eu.etaxonomy.taxeditor.remoting/src/test/resources/h2/cdmTest.h2.db differ
index c6121080efa3e3780989d789e6477d334ea5c973..128ee247033ca938c6fa05e6f847fdad4babfb10 100644 (file)
@@ -1,10 +1,10 @@
-10-09 16:14:18 jdbc[4]: exception
+10-09 16:25:47 jdbc[4]: exception
 org.h2.jdbc.JdbcSQLException: Table "CDMMETADATA" not found; SQL statement:
 SELECT value FROM CdmMetaData WHERE propertyname=0 [42102-170]
-10-09 16:14:21 jdbc[7]: exception
+10-09 16:25:52 jdbc[7]: exception
 org.h2.jdbc.JdbcSQLException: Table "CDMMETADATA" not found; SQL statement:
 SELECT value FROM CdmMetaData WHERE propertyname=0 [42102-170]
-10-09 16:14:38 jdbc[8]: null
+10-09 16:26:09 jdbc[8]: null
 org.h2.message.DbException: The connection was not closed by the application and is garbage collected [90018-170]
        at org.h2.message.DbException.get(DbException.java:169)
        at org.h2.message.DbException.get(DbException.java:146)
@@ -69,7 +69,7 @@ org.h2.message.DbException: The connection was not closed by the application and
 Caused by: org.h2.jdbc.JdbcSQLException: The connection was not closed by the application and is garbage collected [90018-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
        ... 60 more
-10-09 16:14:38 jdbc[8]: null
+10-09 16:26:09 jdbc[8]: null
 org.h2.message.DbException: The connection was not closed by the application and is garbage collected [90018-170]
        at org.h2.message.DbException.get(DbException.java:169)
        at org.h2.message.DbException.get(DbException.java:146)
@@ -134,7 +134,7 @@ org.h2.message.DbException: The connection was not closed by the application and
 Caused by: org.h2.jdbc.JdbcSQLException: The connection was not closed by the application and is garbage collected [90018-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
        ... 60 more
-10-09 16:14:38 jdbc[8]: null
+10-09 16:26:09 jdbc[8]: null
 org.h2.message.DbException: The connection was not closed by the application and is garbage collected [90018-170]
        at org.h2.message.DbException.get(DbException.java:169)
        at org.h2.message.DbException.get(DbException.java:146)
@@ -199,7 +199,7 @@ org.h2.message.DbException: The connection was not closed by the application and
 Caused by: org.h2.jdbc.JdbcSQLException: The connection was not closed by the application and is garbage collected [90018-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
        ... 60 more
-10-09 16:14:38 jdbc[8]: null
+10-09 16:26:09 jdbc[8]: null
 org.h2.message.DbException: The connection was not closed by the application and is garbage collected [90018-170]
        at org.h2.message.DbException.get(DbException.java:169)
        at org.h2.message.DbException.get(DbException.java:146)
@@ -264,7 +264,7 @@ org.h2.message.DbException: The connection was not closed by the application and
 Caused by: org.h2.jdbc.JdbcSQLException: The connection was not closed by the application and is garbage collected [90018-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
        ... 60 more
-10-09 16:14:38 jdbc[8]: null
+10-09 16:26:09 jdbc[8]: null
 org.h2.message.DbException: The connection was not closed by the application and is garbage collected [90018-170]
        at org.h2.message.DbException.get(DbException.java:169)
        at org.h2.message.DbException.get(DbException.java:146)
@@ -329,7 +329,7 @@ org.h2.message.DbException: The connection was not closed by the application and
 Caused by: org.h2.jdbc.JdbcSQLException: The connection was not closed by the application and is garbage collected [90018-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
        ... 60 more
-10-09 16:14:38 jdbc[8]: null
+10-09 16:26:09 jdbc[8]: null
 org.h2.message.DbException: The connection was not closed by the application and is garbage collected [90018-170]
        at org.h2.message.DbException.get(DbException.java:169)
        at org.h2.message.DbException.get(DbException.java:146)
@@ -394,2698 +394,2698 @@ org.h2.message.DbException: The connection was not closed by the application and
 Caused by: org.h2.jdbc.JdbcSQLException: The connection was not closed by the application and is garbage collected [90018-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
        ... 60 more
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ADDRESS" not found; SQL statement:
 alter table Address drop constraint FK1ED033D44FF2DB2C [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ADDRESS" not found; SQL statement:
 alter table Address drop constraint FK1ED033D4BC5DA539 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ADDRESS" not found; SQL statement:
 alter table Address drop constraint FK1ED033D4CDD3C17E [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ADDRESS" not found; SQL statement:
 alter table Address drop constraint FK1ED033D4132A2FE8 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ADDRESS_AUD" not found; SQL statement:
 alter table Address_AUD drop constraint FK115657A534869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE" not found; SQL statement:
 alter table AgentBase drop constraint FK1205D3564FF2DB2C [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE" not found; SQL statement:
 alter table AgentBase drop constraint FK1205D356BC5DA539 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE" not found; SQL statement:
 alter table AgentBase drop constraint FK1205D356A830578 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_AUD" not found; SQL statement:
 alter table AgentBase_AUD drop constraint FK29CC662734869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_ADDRESS" not found; SQL statement:
 alter table AgentBase_Address drop constraint FK1EDFF7EB50751EC5 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_ADDRESS" not found; SQL statement:
 alter table AgentBase_Address drop constraint FK1EDFF7EB86EFC5D4 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_ADDRESS_AUD" not found; SQL statement:
 alter table AgentBase_Address_AUD drop constraint FK3D28383C34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_AGENTBASE" not found; SQL statement:
 alter table AgentBase_AgentBase drop constraint FK4D34EDADE9E535F9 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_AGENTBASE" not found; SQL statement:
 alter table AgentBase_AgentBase drop constraint FK4D34EDAD1C0E9907 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_AGENTBASE_AUD" not found; SQL statement:
 alter table AgentBase_AgentBase_AUD drop constraint FKA8A87CFE34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_ANNOTATION" not found; SQL statement:
 alter table AgentBase_Annotation drop constraint FK44D5F7D81E403E0B [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_ANNOTATION" not found; SQL statement:
 alter table AgentBase_Annotation drop constraint FK44D5F7D886EFC5D4 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_ANNOTATION_AUD" not found; SQL statement:
 alter table AgentBase_Annotation_AUD drop constraint FK771279A934869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_CREDIT" not found; SQL statement:
 alter table AgentBase_Credit drop constraint FK2636742232D1B9F [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_CREDIT" not found; SQL statement:
 alter table AgentBase_Credit drop constraint FK2636742286EFC5D4 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_CREDIT_AUD" not found; SQL statement:
 alter table AgentBase_Credit_AUD drop constraint FK7FE7C0F334869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_DEFINEDTERMBASE" not found; SQL statement:
 alter table AgentBase_DefinedTermBase drop constraint FK6665C77DF116FEB0 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_DEFINEDTERMBASE" not found; SQL statement:
 alter table AgentBase_DefinedTermBase drop constraint FK6665C77D8D9AB196 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_DEFINEDTERMBASE_AUD" not found; SQL statement:
 alter table AgentBase_DefinedTermBase_AUD drop constraint FKA737EECE34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_EXTENSION" not found; SQL statement:
 alter table AgentBase_Extension drop constraint FK8E1E5676927DE9DF [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_EXTENSION" not found; SQL statement:
 alter table AgentBase_Extension drop constraint FK8E1E567686EFC5D4 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_EXTENSION_AUD" not found; SQL statement:
 alter table AgentBase_Extension_AUD drop constraint FK11AE594734869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_MARKER" not found; SQL statement:
 alter table AgentBase_Marker drop constraint FK365D5D63777265A1 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_MARKER" not found; SQL statement:
 alter table AgentBase_Marker drop constraint FK365D5D6386EFC5D4 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_MARKER_AUD" not found; SQL statement:
 alter table AgentBase_Marker_AUD drop constraint FKE40621B434869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_MEDIA" not found; SQL statement:
 alter table AgentBase_Media drop constraint FKE8FC5D9BC2C29593 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_MEDIA" not found; SQL statement:
 alter table AgentBase_Media drop constraint FKE8FC5D9B86EFC5D4 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_MEDIA_AUD" not found; SQL statement:
 alter table AgentBase_Media_AUD drop constraint FK323A45EC34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table AgentBase_OriginalSourceBase drop constraint FKB482C5E63A6735D9 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table AgentBase_OriginalSourceBase drop constraint FKB482C5E686EFC5D4 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_ORIGINALSOURCEBASE_AUD" not found; SQL statement:
 alter table AgentBase_OriginalSourceBase_AUD drop constraint FK886D90B734869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_RIGHTSINFO" not found; SQL statement:
 alter table AgentBase_RightsInfo drop constraint FK4FD6A3CEC13F7B21 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_RIGHTSINFO" not found; SQL statement:
 alter table AgentBase_RightsInfo drop constraint FK4FD6A3CE86EFC5D4 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_RIGHTSINFO_AUD" not found; SQL statement:
 alter table AgentBase_RightsInfo_AUD drop constraint FK79503A9F34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_CONTACT_EMAILADDRESSES" not found; SQL statement:
 alter table AgentBase_contact_emailaddresses drop constraint FK4BD2B08E86EFC5D4 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_CONTACT_EMAILADDRESSES_AUD" not found; SQL statement:
 alter table AgentBase_contact_emailaddresses_AUD drop constraint FKCAF7E75F34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_CONTACT_FAXNUMBERS" not found; SQL statement:
 alter table AgentBase_contact_faxnumbers drop constraint FK52E1AD9586EFC5D4 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_CONTACT_FAXNUMBERS_AUD" not found; SQL statement:
 alter table AgentBase_contact_faxnumbers_AUD drop constraint FK88A308E634869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_CONTACT_PHONENUMBERS" not found; SQL statement:
 alter table AgentBase_contact_phonenumbers drop constraint FKC171CC2486EFC5D4 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_CONTACT_PHONENUMBERS_AUD" not found; SQL statement:
 alter table AgentBase_contact_phonenumbers_AUD drop constraint FKDDD347F534869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_CONTACT_URLS" not found; SQL statement:
 alter table AgentBase_contact_urls drop constraint FK9A9643EC86EFC5D4 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_CONTACT_URLS_AUD" not found; SQL statement:
 alter table AgentBase_contact_urls_AUD drop constraint FK1CE69BBD34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:25 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATION" not found; SQL statement:
 alter table Amplification drop constraint FK9DA6B4164FF2DB2C [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATION" not found; SQL statement:
 alter table Amplification drop constraint FK9DA6B416BC5DA539 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATION" not found; SQL statement:
 alter table Amplification drop constraint FK9DA6B4163DA462D5 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATION" not found; SQL statement:
 alter table Amplification drop constraint FK9DA6B416DEC4385F [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATION" not found; SQL statement:
 alter table Amplification drop constraint FK9DA6B4166D2CE418 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATION" not found; SQL statement:
 alter table Amplification drop constraint FK9DA6B416E671A9DF [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATION" not found; SQL statement:
 alter table Amplification drop constraint FK9DA6B4163781DA30 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATION" not found; SQL statement:
 alter table Amplification drop constraint FK9DA6B416825BDDD3 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATION" not found; SQL statement:
 alter table Amplification drop constraint FK9DA6B416AFCA96F8 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATION" not found; SQL statement:
 alter table Amplification drop constraint FK9DA6B4161600EAB3 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATION_AUD" not found; SQL statement:
 alter table Amplification_AUD drop constraint FK448EE6E734869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATION_ANNOTATION" not found; SQL statement:
 alter table Amplification_Annotation drop constraint FK6B251F181E403E0B [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATION_ANNOTATION" not found; SQL statement:
 alter table Amplification_Annotation drop constraint FK6B251F18614CEB1F [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATION_ANNOTATION_AUD" not found; SQL statement:
 alter table Amplification_Annotation_AUD drop constraint FK6FC00E934869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATION_MARKER" not found; SQL statement:
 alter table Amplification_Marker drop constraint FK46E224A3777265A1 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATION_MARKER" not found; SQL statement:
 alter table Amplification_Marker drop constraint FK46E224A3614CEB1F [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATION_MARKER_AUD" not found; SQL statement:
 alter table Amplification_Marker_AUD drop constraint FKA5548F434869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATION_SINGLEREAD" not found; SQL statement:
 alter table Amplification_SingleRead drop constraint FKFE4921E7BBC12E3E [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATION_SINGLEREAD" not found; SQL statement:
 alter table Amplification_SingleRead drop constraint FKFE4921E7614CEB1F [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATION_SINGLEREAD_AUD" not found; SQL statement:
 alter table Amplification_SingleRead_AUD drop constraint FK8FB4043834869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ANNOTATION" not found; SQL statement:
 alter table Annotation drop constraint FK1A21C74F4FF2DB2C [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ANNOTATION" not found; SQL statement:
 alter table Annotation drop constraint FK1A21C74FBC5DA539 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ANNOTATION" not found; SQL statement:
 alter table Annotation drop constraint FK1A21C74FE8D36B00 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ANNOTATION" not found; SQL statement:
 alter table Annotation drop constraint FK1A21C74FDF299D00 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ANNOTATION" not found; SQL statement:
 alter table Annotation drop constraint FK1A21C74FE7692740 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ANNOTATION_AUD" not found; SQL statement:
 alter table Annotation_AUD drop constraint FK1A6BB5A034869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ANNOTATION_ANNOTATION" not found; SQL statement:
 alter table Annotation_Annotation drop constraint FKC99DFE3F1E403E0B [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ANNOTATION_ANNOTATION" not found; SQL statement:
 alter table Annotation_Annotation drop constraint FKC99DFE3F994CCE20 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ANNOTATION_ANNOTATION_AUD" not found; SQL statement:
 alter table Annotation_Annotation_AUD drop constraint FKB212F49034869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ANNOTATION_MARKER" not found; SQL statement:
 alter table Annotation_Marker drop constraint FKB17EAF4A777265A1 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ANNOTATION_MARKER" not found; SQL statement:
 alter table Annotation_Marker drop constraint FKB17EAF4A994CCE20 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ANNOTATION_MARKER_AUD" not found; SQL statement:
 alter table Annotation_Marker_AUD drop constraint FK68CE281B34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CDM_VIEW" not found; SQL statement:
 alter table CDM_VIEW drop constraint FKC5DE8EF84FF2DB2C [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CDM_VIEW" not found; SQL statement:
 alter table CDM_VIEW drop constraint FKC5DE8EF88D0FB4DA [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CDM_VIEW_CDM_VIEW" not found; SQL statement:
 alter table CDM_VIEW_CDM_VIEW drop constraint FK230A885F7208BB38 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CDM_VIEW_CDM_VIEW" not found; SQL statement:
 alter table CDM_VIEW_CDM_VIEW drop constraint FK230A885FC00D1213 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CDMMETADATA" not found; SQL statement:
 alter table CdmMetaData drop constraint FK6EA78F7B4FF2DB2C [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION" not found; SQL statement:
 alter table Classification drop constraint FKDB1100064FF2DB2C [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION" not found; SQL statement:
 alter table Classification drop constraint FKDB110006BC5DA539 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION" not found; SQL statement:
 alter table Classification drop constraint FKDB11000677E2F09E [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION" not found; SQL statement:
 alter table Classification drop constraint FKDB1100068D0FB4DA [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION" not found; SQL statement:
 alter table Classification drop constraint FKDB110006D1E08681 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_AUD" not found; SQL statement:
 alter table Classification_AUD drop constraint FKEB11BAD734869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_ANNOTATION" not found; SQL statement:
 alter table Classification_Annotation drop constraint FKC978FD281E403E0B [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_ANNOTATION" not found; SQL statement:
 alter table Classification_Annotation drop constraint FKC978FD2884A3CE1B [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_ANNOTATION_AUD" not found; SQL statement:
 alter table Classification_Annotation_AUD drop constraint FK3D1256F934869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_CREDIT" not found; SQL statement:
 alter table Classification_Credit drop constraint FK4950A17232D1B9F [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_CREDIT" not found; SQL statement:
 alter table Classification_Credit drop constraint FK4950A17284A3CE1B [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_CREDIT_AUD" not found; SQL statement:
 alter table Classification_Credit_AUD drop constraint FK48AC64334869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_EXTENSION" not found; SQL statement:
 alter table Classification_Extension drop constraint FK715D6726927DE9DF [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_EXTENSION" not found; SQL statement:
 alter table Classification_Extension drop constraint FK715D672684A3CE1B [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_EXTENSION_AUD" not found; SQL statement:
 alter table Classification_Extension_AUD drop constraint FK289591F734869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_MARKER" not found; SQL statement:
 alter table Classification_Marker drop constraint FK59778AB3777265A1 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_MARKER" not found; SQL statement:
 alter table Classification_Marker drop constraint FK59778AB384A3CE1B [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_MARKER_AUD" not found; SQL statement:
 alter table Classification_Marker_AUD drop constraint FK68A9270434869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table Classification_OriginalSourceBase drop constraint FK91B37B363A6735D9 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table Classification_OriginalSourceBase drop constraint FK91B37B3684A3CE1B [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_ORIGINALSOURCEBASE_AUD" not found; SQL statement:
 alter table Classification_OriginalSourceBase_AUD drop constraint FK48A31E0734869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_RIGHTSINFO" not found; SQL statement:
 alter table Classification_RightsInfo drop constraint FKD479A91EC13F7B21 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_RIGHTSINFO" not found; SQL statement:
 alter table Classification_RightsInfo drop constraint FKD479A91E84A3CE1B [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_RIGHTSINFO_AUD" not found; SQL statement:
 alter table Classification_RightsInfo_AUD drop constraint FK3F5017EF34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION" not found; SQL statement:
 alter table Collection drop constraint FKF078ABE4FF2DB2C [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION" not found; SQL statement:
 alter table Collection drop constraint FKF078ABEBC5DA539 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION" not found; SQL statement:
 alter table Collection drop constraint FKF078ABE16B9CA77 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION" not found; SQL statement:
 alter table Collection drop constraint FKF078ABECEB38EFF [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_AUD" not found; SQL statement:
 alter table Collection_AUD drop constraint FKD6D4298F34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_ANNOTATION" not found; SQL statement:
 alter table Collection_Annotation drop constraint FKEA970F701E403E0B [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_ANNOTATION" not found; SQL statement:
 alter table Collection_Annotation drop constraint FKEA970F70EB62BE9A [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_ANNOTATION_AUD" not found; SQL statement:
 alter table Collection_Annotation_AUD drop constraint FKA0CE054134869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_CREDIT" not found; SQL statement:
 alter table Collection_Credit drop constraint FKE0A317BA32D1B9F [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_CREDIT" not found; SQL statement:
 alter table Collection_Credit drop constraint FKE0A317BAEB62BE9A [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_CREDIT_AUD" not found; SQL statement:
 alter table Collection_Credit_AUD drop constraint FK25A8D88B34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_EXTENSION" not found; SQL statement:
 alter table Collection_Extension drop constraint FKF68FEBDE927DE9DF [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_EXTENSION" not found; SQL statement:
 alter table Collection_Extension drop constraint FKF68FEBDEEB62BE9A [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_EXTENSION_AUD" not found; SQL statement:
 alter table Collection_Extension_AUD drop constraint FK1306FAAF34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_MARKER" not found; SQL statement:
 alter table Collection_Marker drop constraint FKF0CA00FB777265A1 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_MARKER" not found; SQL statement:
 alter table Collection_Marker drop constraint FKF0CA00FBEB62BE9A [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_MARKER_AUD" not found; SQL statement:
 alter table Collection_Marker_AUD drop constraint FK89C7394C34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_MEDIA" not found; SQL statement:
 alter table Collection_Media drop constraint FK7320E703C2C29593 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_MEDIA" not found; SQL statement:
 alter table Collection_Media drop constraint FK7320E703EB62BE9A [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_MEDIA_AUD" not found; SQL statement:
 alter table Collection_Media_AUD drop constraint FK9AABDB5434869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table Collection_OriginalSourceBase drop constraint FK37DEC57E3A6735D9 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table Collection_OriginalSourceBase drop constraint FK37DEC57EEB62BE9A [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_ORIGINALSOURCEBASE_AUD" not found; SQL statement:
 alter table Collection_OriginalSourceBase_AUD drop constraint FKF810044F34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_RIGHTSINFO" not found; SQL statement:
 alter table Collection_RightsInfo drop constraint FKF597BB66C13F7B21 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_RIGHTSINFO" not found; SQL statement:
 alter table Collection_RightsInfo drop constraint FKF597BB66EB62BE9A [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_RIGHTSINFO_AUD" not found; SQL statement:
 alter table Collection_RightsInfo_AUD drop constraint FKA30BC63734869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CREDIT" not found; SQL statement:
 alter table Credit drop constraint FK78CA97194FF2DB2C [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CREDIT" not found; SQL statement:
 alter table Credit drop constraint FK78CA9719BC5DA539 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CREDIT" not found; SQL statement:
 alter table Credit drop constraint FK78CA9719E8D36B00 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CREDIT" not found; SQL statement:
 alter table Credit drop constraint FK78CA9719F7976FC5 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CREDIT_AUD" not found; SQL statement:
 alter table Credit_AUD drop constraint FK5533906A34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CREDIT_ANNOTATION" not found; SQL statement:
 alter table Credit_Annotation drop constraint FKE8DA4C351E403E0B [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CREDIT_ANNOTATION" not found; SQL statement:
 alter table Credit_Annotation drop constraint FKE8DA4C354CF694E0 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CREDIT_ANNOTATION_AUD" not found; SQL statement:
 alter table Credit_Annotation_AUD drop constraint FK1DEB578634869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CREDIT_MARKER" not found; SQL statement:
 alter table Credit_Marker drop constraint FK10CC6840777265A1 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CREDIT_MARKER" not found; SQL statement:
 alter table Credit_Marker drop constraint FK10CC68404CF694E0 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CREDIT_MARKER_AUD" not found; SQL statement:
 alter table Credit_Marker_AUD drop constraint FK880A761134869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE" not found; SQL statement:
 alter table DefinedTermBase drop constraint FK2E340A664FF2DB2C [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE" not found; SQL statement:
 alter table DefinedTermBase drop constraint FK2E340A66BC5DA539 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE" not found; SQL statement:
 alter table DefinedTermBase drop constraint FK2E340A663B0DA0EF [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE" not found; SQL statement:
 alter table DefinedTermBase drop constraint FK2E340A66D040DBF0 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE" not found; SQL statement:
 alter table DefinedTermBase drop constraint FK2E340A6647AF954C [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE" not found; SQL statement:
 alter table DefinedTermBase drop constraint FK2E340A6624AF3F70 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE" not found; SQL statement:
 alter table DefinedTermBase drop constraint FK2E340A6636C6F6F6 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE" not found; SQL statement:
 alter table DefinedTermBase drop constraint FK2E340A66CC0240B6 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE" not found; SQL statement:
 alter table DefinedTermBase drop constraint FK2E340A6688206484 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_AUD" not found; SQL statement:
 alter table DefinedTermBase_AUD drop constraint FK86E8953734869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_ANNOTATION" not found; SQL statement:
 alter table DefinedTermBase_Annotation drop constraint FK589B6C81E403E0B [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_ANNOTATION" not found; SQL statement:
 alter table DefinedTermBase_Annotation drop constraint FK589B6C8C0DB4934 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_ANNOTATION_AUD" not found; SQL statement:
 alter table DefinedTermBase_Annotation_AUD drop constraint FK28ED409934869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_CONTINENT" not found; SQL statement:
 alter table DefinedTermBase_Continent drop constraint FK45F60AFB9AEE7205 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_CONTINENT" not found; SQL statement:
 alter table DefinedTermBase_Continent drop constraint FK45F60AFB901A60CE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_CONTINENT_AUD" not found; SQL statement:
 alter table DefinedTermBase_Continent_AUD drop constraint FKF5DE434C34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_COUNTRY" not found; SQL statement:
 alter table DefinedTermBase_Country drop constraint FKA2ADDA9D47CE41A0 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_COUNTRY" not found; SQL statement:
 alter table DefinedTermBase_Country drop constraint FKA2ADDA9DCE5C0F9E [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_COUNTRY_AUD" not found; SQL statement:
 alter table DefinedTermBase_Country_AUD drop constraint FK8D0171EE34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_CREDIT" not found; SQL statement:
 alter table DefinedTermBase_Credit drop constraint FK78FF2B1232D1B9F [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_CREDIT" not found; SQL statement:
 alter table DefinedTermBase_Credit drop constraint FK78FF2B12C0DB4934 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_CREDIT_AUD" not found; SQL statement:
 alter table DefinedTermBase_Credit_AUD drop constraint FK409B7FE334869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_EXTENSION" not found; SQL statement:
 alter table DefinedTermBase_Extension drop constraint FK397EF986927DE9DF [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_EXTENSION" not found; SQL statement:
 alter table DefinedTermBase_Extension drop constraint FK397EF986C0DB4934 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_EXTENSION_AUD" not found; SQL statement:
 alter table DefinedTermBase_Extension_AUD drop constraint FK6E6F45734869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_MARKER" not found; SQL statement:
 alter table DefinedTermBase_Marker drop constraint FK89261453777265A1 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_MARKER" not found; SQL statement:
 alter table DefinedTermBase_Marker drop constraint FK89261453C0DB4934 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_MARKER_AUD" not found; SQL statement:
 alter table DefinedTermBase_Marker_AUD drop constraint FKA4B9E0A434869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_MEASUREMENTUNIT" not found; SQL statement:
 alter table DefinedTermBase_MeasurementUnit drop constraint FKE9D17767F3BB39BD [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_MEASUREMENTUNIT" not found; SQL statement:
 alter table DefinedTermBase_MeasurementUnit drop constraint FKE9D17767D0BDAE9B [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_MEASUREMENTUNIT_AUD" not found; SQL statement:
 alter table DefinedTermBase_MeasurementUnit_AUD drop constraint FK2C1599B834869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_MEDIA" not found; SQL statement:
 alter table DefinedTermBase_Media drop constraint FK6FC908ABC2C29593 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_MEDIA" not found; SQL statement:
 alter table DefinedTermBase_Media drop constraint FK6FC908ABC0DB4934 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_MEDIA_AUD" not found; SQL statement:
 alter table DefinedTermBase_Media_AUD drop constraint FKDD9AE8FC34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table DefinedTermBase_OriginalSourceBase drop constraint FKDCC094D63A6735D9 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table DefinedTermBase_OriginalSourceBase drop constraint FKDCC094D6C0DB4934 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_ORIGINALSOURCEBASE_AUD" not found; SQL statement:
 alter table DefinedTermBase_OriginalSourceBase_AUD drop constraint FKAE4A67A734869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_RECOMMENDEDMODIFIERENUMERATION" not found; SQL statement:
 alter table DefinedTermBase_RecommendedModifierEnumeration drop constraint FKA72FB5AE5255EAFD [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_RECOMMENDEDMODIFIERENUMERATION" not found; SQL statement:
 alter table DefinedTermBase_RecommendedModifierEnumeration drop constraint FKA72FB5AED0BDAE9B [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_RECOMMENDEDMODIFIERENUMERATION_AUD" not found; SQL statement:
 alter table DefinedTermBase_RecommendedModifierEnumeration_AUD drop constraint FK780D5C7F34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_REPRESENTATION" not found; SQL statement:
 alter table DefinedTermBase_Representation drop constraint FKAAC8AFE6B31C4747 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_REPRESENTATION" not found; SQL statement:
 alter table DefinedTermBase_Representation drop constraint FKAAC8AFE6C0DB4934 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_REPRESENTATION_AUD" not found; SQL statement:
 alter table DefinedTermBase_Representation_AUD drop constraint FKB5AE7AB734869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_RIGHTSINFO" not found; SQL statement:
 alter table DefinedTermBase_RightsInfo drop constraint FK108A62BEC13F7B21 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_RIGHTSINFO" not found; SQL statement:
 alter table DefinedTermBase_RightsInfo drop constraint FK108A62BEC0DB4934 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_RIGHTSINFO_AUD" not found; SQL statement:
 alter table DefinedTermBase_RightsInfo_AUD drop constraint FK2B2B018F34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_STATISTICALMEASURE" not found; SQL statement:
 alter table DefinedTermBase_StatisticalMeasure drop constraint FK6FF15DFCC9CD5B57 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_STATISTICALMEASURE" not found; SQL statement:
 alter table DefinedTermBase_StatisticalMeasure drop constraint FK6FF15DFCD0BDAE9B [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_STATISTICALMEASURE_AUD" not found; SQL statement:
 alter table DefinedTermBase_StatisticalMeasure_AUD drop constraint FK3C062DCD34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_SUPPORTEDCATEGORICALENUMERATION" not found; SQL statement:
 alter table DefinedTermBase_SupportedCategoricalEnumeration drop constraint FK2170B25C5AF2C74 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_SUPPORTEDCATEGORICALENUMERATION" not found; SQL statement:
 alter table DefinedTermBase_SupportedCategoricalEnumeration drop constraint FK2170B25CD0BDAE9B [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_SUPPORTEDCATEGORICALENUMERATION_AUD" not found; SQL statement:
 alter table DefinedTermBase_SupportedCategoricalEnumeration_AUD drop constraint FKBB04522D34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DERIVATIONEVENT" not found; SQL statement:
 alter table DerivationEvent drop constraint FK426BC034FF2DB2C [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DERIVATIONEVENT" not found; SQL statement:
 alter table DerivationEvent drop constraint FK426BC03BC5DA539 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DERIVATIONEVENT" not found; SQL statement:
 alter table DerivationEvent drop constraint FK426BC033DA462D5 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DERIVATIONEVENT" not found; SQL statement:
 alter table DerivationEvent drop constraint FK426BC038524B89D [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DERIVATIONEVENT_AUD" not found; SQL statement:
 alter table DerivationEvent_AUD drop constraint FKDABF305434869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DERIVATIONEVENT_ANNOTATION" not found; SQL statement:
 alter table DerivationEvent_Annotation drop constraint FKEFA0D10B1E403E0B [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DERIVATIONEVENT_ANNOTATION" not found; SQL statement:
 alter table DerivationEvent_Annotation drop constraint FKEFA0D10B4AAB411A [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DERIVATIONEVENT_ANNOTATION_AUD" not found; SQL statement:
 alter table DerivationEvent_Annotation_AUD drop constraint FKA197815C34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DERIVATIONEVENT_MARKER" not found; SQL statement:
 alter table DerivationEvent_Marker drop constraint FKE412C816777265A1 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DERIVATIONEVENT_MARKER" not found; SQL statement:
 alter table DerivationEvent_Marker drop constraint FKE412C8164AAB411A [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DERIVATIONEVENT_MARKER_AUD" not found; SQL statement:
 alter table DerivationEvent_Marker_AUD drop constraint FK8ED0FAE734869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE" not found; SQL statement:
 alter table DescriptionBase drop constraint FKFF4D58CD4FF2DB2C [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE" not found; SQL statement:
 alter table DescriptionBase drop constraint FKFF4D58CDBC5DA539 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE" not found; SQL statement:
 alter table DescriptionBase drop constraint FKFF4D58CDB56856A4 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE" not found; SQL statement:
 alter table DescriptionBase drop constraint FKFF4D58CDDE9A3E39 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE" not found; SQL statement:
 alter table DescriptionBase drop constraint FKFF4D58CDDA935185 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_AUD" not found; SQL statement:
 alter table DescriptionBase_AUD drop constraint FK7456581E34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_ANNOTATION" not found; SQL statement:
 alter table DescriptionBase_Annotation drop constraint FKF3AD32011E403E0B [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_ANNOTATION" not found; SQL statement:
 alter table DescriptionBase_Annotation drop constraint FKF3AD3201F1DDBFAB [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_ANNOTATION_AUD" not found; SQL statement:
 alter table DescriptionBase_Annotation_AUD drop constraint FK15FE775234869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_CREDIT" not found; SQL statement:
 alter table DescriptionBase_Credit drop constraint FK510B2ACB32D1B9F [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_CREDIT" not found; SQL statement:
 alter table DescriptionBase_Credit drop constraint FK510B2ACBF1DDBFAB [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_CREDIT_AUD" not found; SQL statement:
 alter table DescriptionBase_Credit_AUD drop constraint FK2EBEFB1C34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_EXTENSION" not found; SQL statement:
 alter table DescriptionBase_Extension drop constraint FKD5D2B32D927DE9DF [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_EXTENSION" not found; SQL statement:
 alter table DescriptionBase_Extension drop constraint FKD5D2B32DF1DDBFAB [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_EXTENSION_AUD" not found; SQL statement:
 alter table DescriptionBase_Extension_AUD drop constraint FK79E7827E34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_GEOSCOPE" not found; SQL statement:
 alter table DescriptionBase_GeoScope drop constraint FK3ADD7CD586D04E74 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_GEOSCOPE" not found; SQL statement:
 alter table DescriptionBase_GeoScope drop constraint FK3ADD7CD5D86445CE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_GEOSCOPE_AUD" not found; SQL statement:
 alter table DescriptionBase_GeoScope_AUD drop constraint FK63A5382634869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_MARKER" not found; SQL statement:
 alter table DescriptionBase_Marker drop constraint FK6132140C777265A1 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_MARKER" not found; SQL statement:
 alter table DescriptionBase_Marker drop constraint FK6132140CF1DDBFAB [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_MARKER_AUD" not found; SQL statement:
 alter table DescriptionBase_Marker_AUD drop constraint FK92DD5BDD34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table DescriptionBase_OriginalSourceBase drop constraint FKDC75C70F3A6735D9 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table DescriptionBase_OriginalSourceBase drop constraint FKDC75C70FF1DDBFAB [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_ORIGINALSOURCEBASE_AUD" not found; SQL statement:
 alter table DescriptionBase_OriginalSourceBase_AUD drop constraint FK8F39D56034869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_REFERENCE" not found; SQL statement:
 alter table DescriptionBase_Reference drop constraint FKC330D6395C601E49 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_REFERENCE" not found; SQL statement:
 alter table DescriptionBase_Reference drop constraint FKC330D639F1DDBFAB [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_REFERENCE_AUD" not found; SQL statement:
 alter table DescriptionBase_Reference_AUD drop constraint FK76253F8A34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_RIGHTSINFO" not found; SQL statement:
 alter table DescriptionBase_RightsInfo drop constraint FKFEADDDF7C13F7B21 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_RIGHTSINFO" not found; SQL statement:
 alter table DescriptionBase_RightsInfo drop constraint FKFEADDDF7F1DDBFAB [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_RIGHTSINFO_AUD" not found; SQL statement:
 alter table DescriptionBase_RightsInfo_AUD drop constraint FK183C384834869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_SCOPE" not found; SQL statement:
 alter table DescriptionBase_Scope drop constraint FKB9257C4294E290CA [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_SCOPE" not found; SQL statement:
 alter table DescriptionBase_Scope drop constraint FKB9257C42D86445CE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_SCOPE_AUD" not found; SQL statement:
 alter table DescriptionBase_Scope_AUD drop constraint FK75D5B91334869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE" not found; SQL statement:
 alter table DescriptionElementBase drop constraint FK38FE76714FF2DB2C [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE" not found; SQL statement:
 alter table DescriptionElementBase drop constraint FK38FE7671BC5DA539 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE" not found; SQL statement:
 alter table DescriptionElementBase drop constraint FK38FE76714220AFEB [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE" not found; SQL statement:
 alter table DescriptionElementBase drop constraint FK38FE767134AF0E81 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE" not found; SQL statement:
 alter table DescriptionElementBase drop constraint FK38FE76711C3C3FF7 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE" not found; SQL statement:
 alter table DescriptionElementBase drop constraint FK38FE7671E8D36B00 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE" not found; SQL statement:
 alter table DescriptionElementBase drop constraint FK38FE76715E9914B8 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE" not found; SQL statement:
 alter table DescriptionElementBase drop constraint FK38FE76716561D9B1 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE" not found; SQL statement:
 alter table DescriptionElementBase drop constraint FK38FE767110A80E07 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE" not found; SQL statement:
 alter table DescriptionElementBase drop constraint FK38FE76719108D9B [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE" not found; SQL statement:
 alter table DescriptionElementBase drop constraint FK38FE76716D0D7A56 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_AUD" not found; SQL statement:
 alter table DescriptionElementBase_AUD drop constraint FKF3803C234869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_ANNOTATION" not found; SQL statement:
 alter table DescriptionElementBase_Annotation drop constraint FK7EE5E5DD1E403E0B [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_ANNOTATION" not found; SQL statement:
 alter table DescriptionElementBase_Annotation drop constraint FK7EE5E5DD3B8BB609 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_ANNOTATION_AUD" not found; SQL statement:
 alter table DescriptionElementBase_Annotation_AUD drop constraint FK2BC1DD2E34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_LANGUAGESTRING" not found; SQL statement:
 alter table DescriptionElementBase_LanguageString drop constraint FKC753F137ACF5F60B [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_LANGUAGESTRING" not found; SQL statement:
 alter table DescriptionElementBase_LanguageString drop constraint FKC753F137C6D55834 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_LANGUAGESTRING" not found; SQL statement:
 alter table DescriptionElementBase_LanguageString drop constraint FKC753F137C086B46F [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_LANGUAGESTRING_AUD" not found; SQL statement:
 alter table DescriptionElementBase_LanguageString_AUD drop constraint FK2D26AB8834869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_MARKER" not found; SQL statement:
 alter table DescriptionElementBase_Marker drop constraint FK1CB715E8777265A1 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_MARKER" not found; SQL statement:
 alter table DescriptionElementBase_Marker drop constraint FK1CB715E83B8BB609 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_MARKER_AUD" not found; SQL statement:
 alter table DescriptionElementBase_Marker_AUD drop constraint FK1E160FB934869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_MEDIA" not found; SQL statement:
 alter table DescriptionElementBase_Media drop constraint FK21F70076C2C29593 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_MEDIA" not found; SQL statement:
 alter table DescriptionElementBase_Media drop constraint FK21F700763B8BB609 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_MEDIA_AUD" not found; SQL statement:
 alter table DescriptionElementBase_Media_AUD drop constraint FK5522034734869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_MODIFIER" not found; SQL statement:
 alter table DescriptionElementBase_Modifier drop constraint FK97E0D105F4E35BCD [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_MODIFIER" not found; SQL statement:
 alter table DescriptionElementBase_Modifier drop constraint FK97E0D1053B8BB609 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_MODIFIER_AUD" not found; SQL statement:
 alter table DescriptionElementBase_Modifier_AUD drop constraint FK2982F45634869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_MODIFYINGTEXT" not found; SQL statement:
 alter table DescriptionElementBase_ModifyingText drop constraint FK522D90C7F05D08D4 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_MODIFYINGTEXT" not found; SQL statement:
 alter table DescriptionElementBase_ModifyingText drop constraint FK522D90C79682414B [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_MODIFYINGTEXT" not found; SQL statement:
 alter table DescriptionElementBase_ModifyingText drop constraint FK522D90C73B8BB609 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_MODIFYINGTEXT_AUD" not found; SQL statement:
 alter table DescriptionElementBase_ModifyingText_AUD drop constraint FK6C06031834869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table DescriptionElementBase_OriginalSourceBase drop constraint FKF41ADEEBA6473CCC [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table DescriptionElementBase_OriginalSourceBase drop constraint FKF41ADEEB3B8BB609 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_ORIGINALSOURCEBASE_AUD" not found; SQL statement:
 alter table DescriptionElementBase_OriginalSourceBase_AUD drop constraint FK9C979F3C34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_STATEDATA" not found; SQL statement:
 alter table DescriptionElementBase_StateData drop constraint FK592D6F6D8E7BF9AB [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_STATEDATA" not found; SQL statement:
 alter table DescriptionElementBase_StateData drop constraint FK592D6F6D987CC6A4 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_STATEDATA_AUD" not found; SQL statement:
 alter table DescriptionElementBase_StateData_AUD drop constraint FK1D0A1EBE34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_STATISTICALMEASUREMENTVALUE" not found; SQL statement:
 alter table DescriptionElementBase_StatisticalMeasurementValue drop constraint FK8AF511C2D883945E [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_STATISTICALMEASUREMENTVALUE" not found; SQL statement:
 alter table DescriptionElementBase_StatisticalMeasurementValue drop constraint FK8AF511C28F213219 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_STATISTICALMEASUREMENTVALUE_AUD" not found; SQL statement:
 alter table DescriptionElementBase_StatisticalMeasurementValue_AUD drop constraint FK2DE8E9334869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DETERMINATIONEVENT" not found; SQL statement:
 alter table DeterminationEvent drop constraint FK1DB24974FF2DB2C [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DETERMINATIONEVENT" not found; SQL statement:
 alter table DeterminationEvent drop constraint FK1DB2497BC5DA539 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DETERMINATIONEVENT" not found; SQL statement:
 alter table DeterminationEvent drop constraint FK1DB24973DA462D5 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DETERMINATIONEVENT" not found; SQL statement:
 alter table DeterminationEvent drop constraint FK1DB24974B251DAD [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DETERMINATIONEVENT" not found; SQL statement:
 alter table DeterminationEvent drop constraint FK1DB2497BD54CF92 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DETERMINATIONEVENT" not found; SQL statement:
 alter table DeterminationEvent drop constraint FK1DB2497AEC8CCAA [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DETERMINATIONEVENT_AUD" not found; SQL statement:
 alter table DeterminationEvent_AUD drop constraint FKA0252EE834869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DETERMINATIONEVENT_ANNOTATION" not found; SQL statement:
 alter table DeterminationEvent_Annotation drop constraint FKB74F03F71E403E0B [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DETERMINATIONEVENT_ANNOTATION" not found; SQL statement:
 alter table DeterminationEvent_Annotation drop constraint FKB74F03F76BE0BFDA [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DETERMINATIONEVENT_ANNOTATION_AUD" not found; SQL statement:
 alter table DeterminationEvent_Annotation_AUD drop constraint FKAFDA5E4834869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DETERMINATIONEVENT_MARKER" not found; SQL statement:
 alter table DeterminationEvent_Marker drop constraint FK5C475102777265A1 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DETERMINATIONEVENT_MARKER" not found; SQL statement:
 alter table DeterminationEvent_Marker drop constraint FK5C4751026BE0BFDA [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DETERMINATIONEVENT_MARKER_AUD" not found; SQL statement:
 alter table DeterminationEvent_Marker_AUD drop constraint FK567F2DD334869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DETERMINATIONEVENT_REFERENCE" not found; SQL statement:
 alter table DeterminationEvent_Reference drop constraint FK8FB1ED8355A53F64 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DETERMINATIONEVENT_REFERENCE" not found; SQL statement:
 alter table DeterminationEvent_Reference drop constraint FK8FB1ED836BE0BFDA [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DETERMINATIONEVENT_REFERENCE_AUD" not found; SQL statement:
 alter table DeterminationEvent_Reference_AUD drop constraint FK6255A1D434869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "EXTENSION" not found; SQL statement:
 alter table Extension drop constraint FK52EF3C1F4FF2DB2C [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "EXTENSION" not found; SQL statement:
 alter table Extension drop constraint FK52EF3C1FBC5DA539 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "EXTENSION" not found; SQL statement:
 alter table Extension drop constraint FK52EF3C1FAD392BD3 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "EXTENSION_AUD" not found; SQL statement:
 alter table Extension_AUD drop constraint FK92D2427034869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURENODE" not found; SQL statement:
 alter table FeatureNode drop constraint FK4CEED9F84FF2DB2C [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURENODE" not found; SQL statement:
 alter table FeatureNode drop constraint FK4CEED9F8BC5DA539 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURENODE" not found; SQL statement:
 alter table FeatureNode drop constraint FK4CEED9F84220AFEB [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURENODE" not found; SQL statement:
 alter table FeatureNode drop constraint FK4CEED9F847C496CB [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURENODE" not found; SQL statement:
 alter table FeatureNode drop constraint FK4CEED9F8E0AD2C59 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURENODE_AUD" not found; SQL statement:
 alter table FeatureNode_AUD drop constraint FK25AD4BC934869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURENODE_DEFINEDTERMBASE_INAPPLICABLEIF" not found; SQL statement:
 alter table FeatureNode_DefinedTermBase_InapplicableIf drop constraint FK56833D011128E63B [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURENODE_DEFINEDTERMBASE_INAPPLICABLEIF" not found; SQL statement:
 alter table FeatureNode_DefinedTermBase_InapplicableIf drop constraint FK56833D0152FCC4B [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURENODE_DEFINEDTERMBASE_INAPPLICABLEIF_AUD" not found; SQL statement:
 alter table FeatureNode_DefinedTermBase_InapplicableIf_AUD drop constraint FKB8D7025234869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURENODE_DEFINEDTERMBASE_ONLYAPPLICABLE" not found; SQL statement:
 alter table FeatureNode_DefinedTermBase_OnlyApplicable drop constraint FK6AE876AB57FA94D4 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURENODE_DEFINEDTERMBASE_ONLYAPPLICABLE" not found; SQL statement:
 alter table FeatureNode_DefinedTermBase_OnlyApplicable drop constraint FK6AE876AB52FCC4B [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURENODE_DEFINEDTERMBASE_ONLYAPPLICABLE_AUD" not found; SQL statement:
 alter table FeatureNode_DefinedTermBase_OnlyApplicable_AUD drop constraint FK3F5356FC34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE" not found; SQL statement:
 alter table FeatureTree drop constraint FK4CF19F944FF2DB2C [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE" not found; SQL statement:
 alter table FeatureTree drop constraint FK4CF19F94BC5DA539 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE" not found; SQL statement:
 alter table FeatureTree drop constraint FK4CF19F94B7892921 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_AUD" not found; SQL statement:
 alter table FeatureTree_AUD drop constraint FK355BE36534869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_ANNOTATION" not found; SQL statement:
 alter table FeatureTree_Annotation drop constraint FK5D8B8DA1E403E0B [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_ANNOTATION" not found; SQL statement:
 alter table FeatureTree_Annotation drop constraint FK5D8B8DA47C496CB [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_ANNOTATION_AUD" not found; SQL statement:
 alter table FeatureTree_Annotation_AUD drop constraint FK86E8E9AB34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_CREDIT" not found; SQL statement:
 alter table FeatureTree_Credit drop constraint FK7536062432D1B9F [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_CREDIT" not found; SQL statement:
 alter table FeatureTree_Credit drop constraint FK7536062447C496CB [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_CREDIT_AUD" not found; SQL statement:
 alter table FeatureTree_Credit_AUD drop constraint FK40EA81F534869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_EXTENSION" not found; SQL statement:
 alter table FeatureTree_Extension drop constraint FKAD1E6D34927DE9DF [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_EXTENSION" not found; SQL statement:
 alter table FeatureTree_Extension drop constraint FKAD1E6D3447C496CB [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_EXTENSION_AUD" not found; SQL statement:
 alter table FeatureTree_Extension_AUD drop constraint FKF128E10534869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_MARKER" not found; SQL statement:
 alter table FeatureTree_Marker drop constraint FK855CEF65777265A1 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_MARKER" not found; SQL statement:
 alter table FeatureTree_Marker drop constraint FK855CEF6547C496CB [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_MARKER_AUD" not found; SQL statement:
 alter table FeatureTree_Marker_AUD drop constraint FKA508E2B634869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table FeatureTree_OriginalSourceBase drop constraint FK13BD64E83A6735D9 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table FeatureTree_OriginalSourceBase drop constraint FK13BD64E847C496CB [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_ORIGINALSOURCEBASE_AUD" not found; SQL statement:
 alter table FeatureTree_OriginalSourceBase_AUD drop constraint FK7B5CDEB934869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_REPRESENTATION" not found; SQL statement:
 alter table FeatureTree_Representation drop constraint FK8C458F8B31C4747 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_REPRESENTATION" not found; SQL statement:
 alter table FeatureTree_Representation drop constraint FK8C458F847C496CB [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_REPRESENTATION_AUD" not found; SQL statement:
 alter table FeatureTree_Representation_AUD drop constraint FKECAB4AC934869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_RIGHTSINFO" not found; SQL statement:
 alter table FeatureTree_RightsInfo drop constraint FK10D964D0C13F7B21 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_RIGHTSINFO" not found; SQL statement:
 alter table FeatureTree_RightsInfo drop constraint FK10D964D047C496CB [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_RIGHTSINFO_AUD" not found; SQL statement:
 alter table FeatureTree_RightsInfo_AUD drop constraint FK8926AAA134869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "GATHERINGEVENT" not found; SQL statement:
 alter table GatheringEvent drop constraint FK6F1286F34FF2DB2C [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "GATHERINGEVENT" not found; SQL statement:
 alter table GatheringEvent drop constraint FK6F1286F3BC5DA539 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "GATHERINGEVENT" not found; SQL statement:
 alter table GatheringEvent drop constraint FK6F1286F33DA462D5 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "GATHERINGEVENT" not found; SQL statement:
 alter table GatheringEvent drop constraint FK6F1286F3C15704E [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "GATHERINGEVENT" not found; SQL statement:
 alter table GatheringEvent drop constraint FK6F1286F3F55AFD89 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "GATHERINGEVENT" not found; SQL statement:
 alter table GatheringEvent drop constraint FK6F1286F38B455EC6 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "GATHERINGEVENT_AUD" not found; SQL statement:
 alter table GatheringEvent_AUD drop constraint FK3EC034434869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "GATHERINGEVENT_ANNOTATION" not found; SQL statement:
 alter table GatheringEvent_Annotation drop constraint FK76DDD01B1E403E0B [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "GATHERINGEVENT_ANNOTATION" not found; SQL statement:
 alter table GatheringEvent_Annotation drop constraint FK76DDD01BF95F225A [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "GATHERINGEVENT_ANNOTATION_AUD" not found; SQL statement:
 alter table GatheringEvent_Annotation_AUD drop constraint FK351E786C34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "GATHERINGEVENT_DEFINEDTERMBASE" not found; SQL statement:
 alter table GatheringEvent_DefinedTermBase drop constraint FK69D9A11A7C34B6D6 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "GATHERINGEVENT_DEFINEDTERMBASE" not found; SQL statement:
 alter table GatheringEvent_DefinedTermBase drop constraint FK69D9A11AF95F225A [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "GATHERINGEVENT_DEFINEDTERMBASE_AUD" not found; SQL statement:
 alter table GatheringEvent_DefinedTermBase_AUD drop constraint FKB3BBB1EB34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "GATHERINGEVENT_MARKER" not found; SQL statement:
 alter table GatheringEvent_Marker drop constraint FK7B49CF26777265A1 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "GATHERINGEVENT_MARKER" not found; SQL statement:
 alter table GatheringEvent_Marker drop constraint FK7B49CF26F95F225A [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "GATHERINGEVENT_MARKER_AUD" not found; SQL statement:
 alter table GatheringEvent_Marker_AUD drop constraint FK160DF9F734869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "GRANTEDAUTHORITYIMPL" not found; SQL statement:
 alter table GrantedAuthorityImpl drop constraint FKB05CF9284FF2DB2C [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HOMOTYPICALGROUP" not found; SQL statement:
 alter table HomotypicalGroup drop constraint FK7DECCC184FF2DB2C [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HOMOTYPICALGROUP" not found; SQL statement:
 alter table HomotypicalGroup drop constraint FK7DECCC18BC5DA539 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HOMOTYPICALGROUP_AUD" not found; SQL statement:
 alter table HomotypicalGroup_AUD drop constraint FKE4252DE934869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HOMOTYPICALGROUP_ANNOTATION" not found; SQL statement:
 alter table HomotypicalGroup_Annotation drop constraint FK7A0351D61E403E0B [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HOMOTYPICALGROUP_ANNOTATION" not found; SQL statement:
 alter table HomotypicalGroup_Annotation drop constraint FK7A0351D6BFEAE500 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HOMOTYPICALGROUP_ANNOTATION_AUD" not found; SQL statement:
 alter table HomotypicalGroup_Annotation_AUD drop constraint FK41E6A4A734869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HOMOTYPICALGROUP_MARKER" not found; SQL statement:
 alter table HomotypicalGroup_Marker drop constraint FK97D36661777265A1 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HOMOTYPICALGROUP_MARKER" not found; SQL statement:
 alter table HomotypicalGroup_Marker drop constraint FK97D36661BFEAE500 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HOMOTYPICALGROUP_MARKER_AUD" not found; SQL statement:
 alter table HomotypicalGroup_Marker_AUD drop constraint FK19337BB234869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HYBRIDRELATIONSHIP" not found; SQL statement:
 alter table HybridRelationship drop constraint FK9033CE744FF2DB2C [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HYBRIDRELATIONSHIP" not found; SQL statement:
 alter table HybridRelationship drop constraint FK9033CE74BC5DA539 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HYBRIDRELATIONSHIP" not found; SQL statement:
 alter table HybridRelationship drop constraint FK9033CE74AEB7F3BE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HYBRIDRELATIONSHIP" not found; SQL statement:
 alter table HybridRelationship drop constraint FK9033CE749DD57A93 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HYBRIDRELATIONSHIP" not found; SQL statement:
 alter table HybridRelationship drop constraint FK9033CE74AF4F9F62 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HYBRIDRELATIONSHIP" not found; SQL statement:
 alter table HybridRelationship drop constraint FK9033CE7455F241D4 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HYBRIDRELATIONSHIP_AUD" not found; SQL statement:
 alter table HybridRelationship_AUD drop constraint FK9C2BA24534869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HYBRIDRELATIONSHIP_ANNOTATION" not found; SQL statement:
 alter table HybridRelationship_Annotation drop constraint FK2C7E7DFA1E403E0B [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HYBRIDRELATIONSHIP_ANNOTATION" not found; SQL statement:
 alter table HybridRelationship_Annotation drop constraint FK2C7E7DFA59832240 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HYBRIDRELATIONSHIP_ANNOTATION_AUD" not found; SQL statement:
 alter table HybridRelationship_Annotation_AUD drop constraint FKACE71ECB34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HYBRIDRELATIONSHIP_MARKER" not found; SQL statement:
 alter table HybridRelationship_Marker drop constraint FKCEF24485777265A1 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HYBRIDRELATIONSHIP_MARKER" not found; SQL statement:
 alter table HybridRelationship_Marker drop constraint FKCEF2448559832240 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HYBRIDRELATIONSHIP_MARKER_AUD" not found; SQL statement:
 alter table HybridRelationship_Marker_AUD drop constraint FKCBAEA7D634869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "INDIVIDUALASSOCIATION_LANGUAGESTRING" not found; SQL statement:
 alter table IndividualAssociation_LanguageString drop constraint FKB5C75EC02BEBA58D [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "INDIVIDUALASSOCIATION_LANGUAGESTRING" not found; SQL statement:
 alter table IndividualAssociation_LanguageString drop constraint FKB5C75EC028459272 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "INDIVIDUALASSOCIATION_LANGUAGESTRING" not found; SQL statement:
 alter table IndividualAssociation_LanguageString drop constraint FKB5C75EC084FF3EDF [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "INDIVIDUALASSOCIATION_LANGUAGESTRING_AUD" not found; SQL statement:
 alter table IndividualAssociation_LanguageString_AUD drop constraint FKB1A62C9134869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "INSTITUTIONALMEMBERSHIP" not found; SQL statement:
 alter table InstitutionalMembership drop constraint FK3C8E1FF94FF2DB2C [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "INSTITUTIONALMEMBERSHIP" not found; SQL statement:
 alter table InstitutionalMembership drop constraint FK3C8E1FF9BC5DA539 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "INSTITUTIONALMEMBERSHIP" not found; SQL statement:
 alter table InstitutionalMembership drop constraint FK3C8E1FF916B9CA77 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "INSTITUTIONALMEMBERSHIP" not found; SQL statement:
 alter table InstitutionalMembership drop constraint FK3C8E1FF9AAC1B820 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "INSTITUTIONALMEMBERSHIP_AUD" not found; SQL statement:
 alter table InstitutionalMembership_AUD drop constraint FK847A94A34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "KEYSTATEMENT" not found; SQL statement:
 alter table KeyStatement drop constraint FK7125B9F04FF2DB2C [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "KEYSTATEMENT" not found; SQL statement:
 alter table KeyStatement drop constraint FK7125B9F0BC5DA539 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "KEYSTATEMENT_AUD" not found; SQL statement:
 alter table KeyStatement_AUD drop constraint FK93036FC134869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "KEYSTATEMENT_LANGUAGESTRING" not found; SQL statement:
 alter table KeyStatement_LanguageString drop constraint FK70BB5FD89C782795 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "KEYSTATEMENT_LANGUAGESTRING" not found; SQL statement:
 alter table KeyStatement_LanguageString drop constraint FK70BB5FD8DA0C376A [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "KEYSTATEMENT_LANGUAGESTRING" not found; SQL statement:
 alter table KeyStatement_LanguageString drop constraint FK70BB5FD8AAA67049 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "KEYSTATEMENT_LANGUAGESTRING_AUD" not found; SQL statement:
 alter table KeyStatement_LanguageString_AUD drop constraint FKE203E1A934869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "LSIDAUTHORITY" not found; SQL statement:
 alter table LSIDAuthority drop constraint FK759DB8814FF2DB2C [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "LSIDAUTHORITY_NAMESPACES" not found; SQL statement:
 alter table LSIDAuthority_namespaces drop constraint FKB04948F64FFCFD94 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "LANGUAGESTRING" not found; SQL statement:
 alter table LanguageString drop constraint FKB5FDC9A94FF2DB2C [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "LANGUAGESTRING" not found; SQL statement:
 alter table LanguageString drop constraint FKB5FDC9A9BC5DA539 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "LANGUAGESTRING" not found; SQL statement:
 alter table LanguageString drop constraint FKB5FDC9A9E8D36B00 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "LANGUAGESTRING_AUD" not found; SQL statement:
 alter table LanguageString_AUD drop constraint FK896AFAFA34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "LANGUAGESTRING_ANNOTATION" not found; SQL statement:
 alter table LanguageString_Annotation drop constraint FK8400DFA51E403E0B [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "LANGUAGESTRING_ANNOTATION" not found; SQL statement:
 alter table LanguageString_Annotation drop constraint FK8400DFA537998500 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "LANGUAGESTRING_ANNOTATION_AUD" not found; SQL statement:
 alter table LanguageString_Annotation_AUD drop constraint FKD3BAB2F634869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "LANGUAGESTRING_MARKER" not found; SQL statement:
 alter table LanguageString_Marker drop constraint FK8DA633B0777265A1 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "LANGUAGESTRING_MARKER" not found; SQL statement:
 alter table LanguageString_Marker drop constraint FK8DA633B037998500 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "LANGUAGESTRING_MARKER_AUD" not found; SQL statement:
 alter table LanguageString_Marker_AUD drop constraint FK2331098134869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MARKER" not found; SQL statement:
 alter table Marker drop constraint FK88F1805A4FF2DB2C [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MARKER" not found; SQL statement:
 alter table Marker drop constraint FK88F1805ABC5DA539 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MARKER" not found; SQL statement:
 alter table Marker drop constraint FK88F1805AD64DC020 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MARKER_AUD" not found; SQL statement:
 alter table Marker_AUD drop constraint FKB951F12B34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MATERIALORMETHODEVENT" not found; SQL statement:
 alter table MaterialOrMethodEvent drop constraint FK458A264F4FF2DB2C [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MATERIALORMETHODEVENT" not found; SQL statement:
 alter table MaterialOrMethodEvent drop constraint FK458A264FBC5DA539 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MATERIALORMETHODEVENT" not found; SQL statement:
 alter table MaterialOrMethodEvent drop constraint FK458A264F3DA462D5 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MATERIALORMETHODEVENT" not found; SQL statement:
 alter table MaterialOrMethodEvent drop constraint FK458A264F14D2C695 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MATERIALORMETHODEVENT" not found; SQL statement:
 alter table MaterialOrMethodEvent drop constraint FK458A264F3781DA30 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MATERIALORMETHODEVENT" not found; SQL statement:
 alter table MaterialOrMethodEvent drop constraint FK458A264F1600EAB3 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MATERIALORMETHODEVENT" not found; SQL statement:
 alter table MaterialOrMethodEvent drop constraint FK458A264F9A129634 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MATERIALORMETHODEVENT_AUD" not found; SQL statement:
 alter table MaterialOrMethodEvent_AUD drop constraint FK8C8C94A034869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MATERIALORMETHODEVENT_ANNOTATION" not found; SQL statement:
 alter table MaterialOrMethodEvent_Annotation drop constraint FKD9943F3F1E403E0B [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MATERIALORMETHODEVENT_ANNOTATION" not found; SQL statement:
 alter table MaterialOrMethodEvent_Annotation drop constraint FKD9943F3F2F50355A [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MATERIALORMETHODEVENT_ANNOTATION_AUD" not found; SQL statement:
 alter table MaterialOrMethodEvent_Annotation_AUD drop constraint FK6B00B59034869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MATERIALORMETHODEVENT_MARKER" not found; SQL statement:
 alter table MaterialOrMethodEvent_Marker drop constraint FKF0BD704A777265A1 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MATERIALORMETHODEVENT_MARKER" not found; SQL statement:
 alter table MaterialOrMethodEvent_Marker drop constraint FKF0BD704A2F50355A [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MATERIALORMETHODEVENT_MARKER_AUD" not found; SQL statement:
 alter table MaterialOrMethodEvent_Marker_AUD drop constraint FK78C4691B34869AAE [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA" not found; SQL statement:
 alter table Media drop constraint FK46C7FC44FF2DB2C [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA" not found; SQL statement:
 alter table Media drop constraint FK46C7FC4BC5DA539 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA" not found; SQL statement:
 alter table Media drop constraint FK46C7FC4C2445443 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIAKEY_NAMEDAREA" not found; SQL statement:
 alter table MediaKey_NamedArea drop constraint FK31E7D4023FF8E7B2 [42102-170]
-10-09 16:14:55 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIAKEY_NAMEDAREA" not found; SQL statement:
 alter table MediaKey_NamedArea drop constraint FK31E7D402BE59D760 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIAKEY_NAMEDAREA_AUD" not found; SQL statement:
 alter table MediaKey_NamedArea_AUD drop constraint FK922630D334869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIAKEY_SCOPE" not found; SQL statement:
 alter table MediaKey_Scope drop constraint FKBFFEE8F05431B96E [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIAKEY_SCOPE" not found; SQL statement:
 alter table MediaKey_Scope drop constraint FKBFFEE8F0BE59D760 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIAKEY_SCOPE_AUD" not found; SQL statement:
 alter table MediaKey_Scope_AUD drop constraint FK63AD1EC134869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIAKEY_TAXON" not found; SQL statement:
 alter table MediaKey_Taxon drop constraint FKC00C3966DE9A3E39 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIAKEY_TAXON" not found; SQL statement:
 alter table MediaKey_Taxon drop constraint FKC00C3966815C7E9 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIAKEY_TAXON_AUD" not found; SQL statement:
 alter table MediaKey_Taxon_AUD drop constraint FK311443734869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIAREPRESENTATION" not found; SQL statement:
 alter table MediaRepresentation drop constraint FK1966BDB14FF2DB2C [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIAREPRESENTATION" not found; SQL statement:
 alter table MediaRepresentation drop constraint FK1966BDB1BC5DA539 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIAREPRESENTATION" not found; SQL statement:
 alter table MediaRepresentation drop constraint FK1966BDB1C2C29593 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIAREPRESENTATIONPART" not found; SQL statement:
 alter table MediaRepresentationPart drop constraint FK67A455444FF2DB2C [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIAREPRESENTATIONPART" not found; SQL statement:
 alter table MediaRepresentationPart drop constraint FK67A45544BC5DA539 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIAREPRESENTATIONPART" not found; SQL statement:
 alter table MediaRepresentationPart drop constraint FK67A45544E3818E37 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIAREPRESENTATIONPART_AUD" not found; SQL statement:
 alter table MediaRepresentationPart_AUD drop constraint FKA75C411534869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIAREPRESENTATION_AUD" not found; SQL statement:
 alter table MediaRepresentation_AUD drop constraint FK67AAAB0234869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIAREPRESENTATION_MEDIAREPRESENTATIONPART_AUD" not found; SQL statement:
 alter table MediaRepresentation_MediaRepresentationPart_AUD drop constraint FK3544378734869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_AUD" not found; SQL statement:
 alter table Media_AUD drop constraint FKF70B2B9534869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_ANNOTATION" not found; SQL statement:
 alter table Media_Annotation drop constraint FKA020DAAA1E403E0B [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_ANNOTATION" not found; SQL statement:
 alter table Media_Annotation drop constraint FKA020DAAAC2C29593 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_ANNOTATION_AUD" not found; SQL statement:
 alter table Media_Annotation_AUD drop constraint FK99ABA37B34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_CREDIT" not found; SQL statement:
 alter table Media_Credit drop constraint FKC1F78FF432D1B9F [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_CREDIT" not found; SQL statement:
 alter table Media_Credit drop constraint FKC1F78FF4C2C29593 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_CREDIT_AUD" not found; SQL statement:
 alter table Media_Credit_AUD drop constraint FKDB32A3C534869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_DESCRIPTION" not found; SQL statement:
 alter table Media_Description drop constraint FK368283E12BEBA58D [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_DESCRIPTION" not found; SQL statement:
 alter table Media_Description drop constraint FK368283E128459272 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_DESCRIPTION" not found; SQL statement:
 alter table Media_Description drop constraint FK368283E1C2C29593 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_DESCRIPTION_AUD" not found; SQL statement:
 alter table Media_Description_AUD drop constraint FK6817D93234869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_EXTENSION" not found; SQL statement:
 alter table Media_Extension drop constraint FKDB62D164927DE9DF [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_EXTENSION" not found; SQL statement:
 alter table Media_Extension drop constraint FKDB62D164C2C29593 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_EXTENSION_AUD" not found; SQL statement:
 alter table Media_Extension_AUD drop constraint FKE13FAD3534869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_LANGUAGESTRING" not found; SQL statement:
 alter table Media_LanguageString drop constraint FK353DB784A1CA19B1 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_LANGUAGESTRING" not found; SQL statement:
 alter table Media_LanguageString drop constraint FK353DB784A0A6EDCE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_LANGUAGESTRING" not found; SQL statement:
 alter table Media_LanguageString drop constraint FK353DB784C2C29593 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_LANGUAGESTRING_AUD" not found; SQL statement:
 alter table Media_LanguageString_AUD drop constraint FK68FA835534869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_MARKER" not found; SQL statement:
 alter table Media_Marker drop constraint FKD21E7935777265A1 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_MARKER" not found; SQL statement:
 alter table Media_Marker drop constraint FKD21E7935C2C29593 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_MARKER_AUD" not found; SQL statement:
 alter table Media_Marker_AUD drop constraint FK3F51048634869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table Media_OriginalSourceBase drop constraint FK2FEEB6B83A6735D9 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table Media_OriginalSourceBase drop constraint FK2FEEB6B8C2C29593 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_ORIGINALSOURCEBASE_AUD" not found; SQL statement:
 alter table Media_OriginalSourceBase_AUD drop constraint FK97F0C88934869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_REPRESENTATION" not found; SQL statement:
 alter table Media_Representation drop constraint FK1B8712C88F6CABE6 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_REPRESENTATION" not found; SQL statement:
 alter table Media_Representation drop constraint FK1B8712C8BE59D760 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_REPRESENTATION_AUD" not found; SQL statement:
 alter table Media_Representation_AUD drop constraint FK8DC9C9934869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_RIGHTSINFO" not found; SQL statement:
 alter table Media_RightsInfo drop constraint FKAB2186A0C13F7B21 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_RIGHTSINFO" not found; SQL statement:
 alter table Media_RightsInfo drop constraint FKAB2186A0C2C29593 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_RIGHTSINFO_AUD" not found; SQL statement:
 alter table Media_RightsInfo_AUD drop constraint FK9BE9647134869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_SEQUENCE" not found; SQL statement:
 alter table Media_Sequence drop constraint FK61D09FCF29B4761 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_SEQUENCE" not found; SQL statement:
 alter table Media_Sequence drop constraint FK61D09FC3282B64 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_SEQUENCE_AUD" not found; SQL statement:
 alter table Media_Sequence_AUD drop constraint FK3C7BD9CD34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_TAXONBASE" not found; SQL statement:
 alter table Media_TaxonBase drop constraint FK1ABD49E07C3D0017 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_TAXONBASE" not found; SQL statement:
 alter table Media_TaxonBase drop constraint FK1ABD49E0BE59D760 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_TAXONBASE_AUD" not found; SQL statement:
 alter table Media_TaxonBase_AUD drop constraint FK857187B134869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MULTIACCESSKEY_NAMEDAREA" not found; SQL statement:
 alter table MultiAccessKey_NamedArea drop constraint FK1F5A74893FF8E7B2 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MULTIACCESSKEY_NAMEDAREA" not found; SQL statement:
 alter table MultiAccessKey_NamedArea drop constraint FK1F5A7489B4555A9A [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MULTIACCESSKEY_NAMEDAREA_AUD" not found; SQL statement:
 alter table MultiAccessKey_NamedArea_AUD drop constraint FK4CB735DA34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MULTIACCESSKEY_SCOPE" not found; SQL statement:
 alter table MultiAccessKey_Scope drop constraint FKCC6CE4F75431B96E [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MULTIACCESSKEY_SCOPE" not found; SQL statement:
 alter table MultiAccessKey_Scope drop constraint FKCC6CE4F7B4555A9A [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MULTIACCESSKEY_SCOPE_AUD" not found; SQL statement:
 alter table MultiAccessKey_Scope_AUD drop constraint FK511FBF4834869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MULTIACCESSKEY_TAXON" not found; SQL statement:
 alter table MultiAccessKey_Taxon drop constraint FKCC7A356DDE9A3E39 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MULTIACCESSKEY_TAXON" not found; SQL statement:
 alter table MultiAccessKey_Taxon drop constraint FKCC7A356DB64A7B29 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MULTIACCESSKEY_TAXON_AUD" not found; SQL statement:
 alter table MultiAccessKey_Taxon_AUD drop constraint FKF083E4BE34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NAMERELATIONSHIP" not found; SQL statement:
 alter table NameRelationship drop constraint FK5E510834FF2DB2C [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NAMERELATIONSHIP" not found; SQL statement:
 alter table NameRelationship drop constraint FK5E51083BC5DA539 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NAMERELATIONSHIP" not found; SQL statement:
 alter table NameRelationship drop constraint FK5E51083AEB7F3BE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NAMERELATIONSHIP" not found; SQL statement:
 alter table NameRelationship drop constraint FK5E5108316CDFF85 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NAMERELATIONSHIP" not found; SQL statement:
 alter table NameRelationship drop constraint FK5E5108328482454 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NAMERELATIONSHIP" not found; SQL statement:
 alter table NameRelationship drop constraint FK5E51083AF619DE3 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NAMERELATIONSHIP_AUD" not found; SQL statement:
 alter table NameRelationship_AUD drop constraint FK743F44D434869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NAMERELATIONSHIP_ANNOTATION" not found; SQL statement:
 alter table NameRelationship_Annotation drop constraint FK2E38AC8B1E403E0B [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NAMERELATIONSHIP_ANNOTATION" not found; SQL statement:
 alter table NameRelationship_Annotation drop constraint FK2E38AC8B7B4CB560 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NAMERELATIONSHIP_ANNOTATION_AUD" not found; SQL statement:
 alter table NameRelationship_Annotation_AUD drop constraint FKD1D59CDC34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NAMERELATIONSHIP_MARKER" not found; SQL statement:
 alter table NameRelationship_Marker drop constraint FKE3E46396777265A1 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NAMERELATIONSHIP_MARKER" not found; SQL statement:
 alter table NameRelationship_Marker drop constraint FKE3E463967B4CB560 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NAMERELATIONSHIP_MARKER_AUD" not found; SQL statement:
 alter table NameRelationship_Marker_AUD drop constraint FKCD68D66734869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NOMENCLATURALSTATUS" not found; SQL statement:
 alter table NomenclaturalStatus drop constraint FK1FFEC88B4FF2DB2C [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NOMENCLATURALSTATUS" not found; SQL statement:
 alter table NomenclaturalStatus drop constraint FK1FFEC88BBC5DA539 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NOMENCLATURALSTATUS" not found; SQL statement:
 alter table NomenclaturalStatus drop constraint FK1FFEC88BAEB7F3BE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NOMENCLATURALSTATUS" not found; SQL statement:
 alter table NomenclaturalStatus drop constraint FK1FFEC88B7029BD9F [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NOMENCLATURALSTATUS_AUD" not found; SQL statement:
 alter table NomenclaturalStatus_AUD drop constraint FKFB2DB8DC34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NOMENCLATURALSTATUS_ANNOTATION" not found; SQL statement:
 alter table NomenclaturalStatus_Annotation drop constraint FKE6E91F831E403E0B [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NOMENCLATURALSTATUS_ANNOTATION" not found; SQL statement:
 alter table NomenclaturalStatus_Annotation drop constraint FKE6E91F838D2CB1D4 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NOMENCLATURALSTATUS_ANNOTATION_AUD" not found; SQL statement:
 alter table NomenclaturalStatus_Annotation_AUD drop constraint FK6A3D3D434869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NOMENCLATURALSTATUS_MARKER" not found; SQL statement:
 alter table NomenclaturalStatus_Marker drop constraint FK2F5128E777265A1 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NOMENCLATURALSTATUS_MARKER" not found; SQL statement:
 alter table NomenclaturalStatus_Marker drop constraint FK2F5128E8D2CB1D4 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NOMENCLATURALSTATUS_MARKER_AUD" not found; SQL statement:
 alter table NomenclaturalStatus_Marker_AUD drop constraint FK8619495F34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ORIGINALSOURCEBASE" not found; SQL statement:
 alter table OriginalSourceBase drop constraint FK505F2E5D4FF2DB2C [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ORIGINALSOURCEBASE" not found; SQL statement:
 alter table OriginalSourceBase drop constraint FK505F2E5DBC5DA539 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ORIGINALSOURCEBASE" not found; SQL statement:
 alter table OriginalSourceBase drop constraint FK505F2E5DAEB7F3BE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ORIGINALSOURCEBASE" not found; SQL statement:
 alter table OriginalSourceBase drop constraint FK505F2E5D966B96B2 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ORIGINALSOURCEBASE_AUD" not found; SQL statement:
 alter table OriginalSourceBase_AUD drop constraint FK9662E5AE34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ORIGINALSOURCEBASE_ANNOTATION" not found; SQL statement:
 alter table OriginalSourceBase_Annotation drop constraint FK208142711E403E0B [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ORIGINALSOURCEBASE_ANNOTATION" not found; SQL statement:
 alter table OriginalSourceBase_Annotation drop constraint FK20814271B029DDA0 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ORIGINALSOURCEBASE_ANNOTATION_AUD" not found; SQL statement:
 alter table OriginalSourceBase_Annotation_AUD drop constraint FKA074CFC234869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ORIGINALSOURCEBASE_MARKER" not found; SQL statement:
 alter table OriginalSourceBase_Marker drop constraint FKB3FFDC7C777265A1 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ORIGINALSOURCEBASE_MARKER" not found; SQL statement:
 alter table OriginalSourceBase_Marker drop constraint FKB3FFDC7CB029DDA0 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ORIGINALSOURCEBASE_MARKER_AUD" not found; SQL statement:
 alter table OriginalSourceBase_Marker_AUD drop constraint FKBFB16C4D34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "PERMISSIONGROUP" not found; SQL statement:
 alter table PermissionGroup drop constraint FK629941D04FF2DB2C [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "PERMISSIONGROUP_GRANTEDAUTHORITYIMPL" not found; SQL statement:
 alter table PermissionGroup_GrantedAuthorityImpl drop constraint FK53114371857F6C2 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "PERMISSIONGROUP_GRANTEDAUTHORITYIMPL" not found; SQL statement:
 alter table PermissionGroup_GrantedAuthorityImpl drop constraint FK5311437CA0971A3 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY" not found; SQL statement:
 alter table PolytomousKey drop constraint FKA9E6B1384FF2DB2C [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY" not found; SQL statement:
 alter table PolytomousKey drop constraint FKA9E6B138BC5DA539 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY" not found; SQL statement:
 alter table PolytomousKey drop constraint FKA9E6B138576595C3 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEYNODE" not found; SQL statement:
 alter table PolytomousKeyNode drop constraint FK860775A4FF2DB2C [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEYNODE" not found; SQL statement:
 alter table PolytomousKeyNode drop constraint FK860775ABC5DA539 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEYNODE" not found; SQL statement:
 alter table PolytomousKeyNode drop constraint FK860775A4220AFEB [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEYNODE" not found; SQL statement:
 alter table PolytomousKeyNode drop constraint FK860775AC73A7584 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEYNODE" not found; SQL statement:
 alter table PolytomousKeyNode drop constraint FK860775A4FEE4393 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEYNODE" not found; SQL statement:
 alter table PolytomousKeyNode drop constraint FK860775A808998FB [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEYNODE" not found; SQL statement:
 alter table PolytomousKeyNode drop constraint FK860775A9D3C2E93 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEYNODE" not found; SQL statement:
 alter table PolytomousKeyNode drop constraint FK860775A4382686A [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEYNODE" not found; SQL statement:
 alter table PolytomousKeyNode drop constraint FK860775A1C0483C4 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEYNODE" not found; SQL statement:
 alter table PolytomousKeyNode drop constraint FK860775ADE9A3E39 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEYNODE_AUD" not found; SQL statement:
 alter table PolytomousKeyNode_AUD drop constraint FK6A6D682B34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEYNODE_LANGUAGESTRING" not found; SQL statement:
 alter table PolytomousKeyNode_LanguageString drop constraint FK5574E12EF05D08D4 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEYNODE_LANGUAGESTRING" not found; SQL statement:
 alter table PolytomousKeyNode_LanguageString drop constraint FK5574E12E9682414B [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEYNODE_LANGUAGESTRING" not found; SQL statement:
 alter table PolytomousKeyNode_LanguageString drop constraint FK5574E12EF135C42B [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEYNODE_LANGUAGESTRING_AUD" not found; SQL statement:
 alter table PolytomousKeyNode_LanguageString_AUD drop constraint FKE0D0C7FF34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_AUD" not found; SQL statement:
 alter table PolytomousKey_AUD drop constraint FK867830934869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_ANNOTATION" not found; SQL statement:
 alter table PolytomousKey_Annotation drop constraint FK278CF8B61E403E0B [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_ANNOTATION" not found; SQL statement:
 alter table PolytomousKey_Annotation drop constraint FK278CF8B689D97CB [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_ANNOTATION_AUD" not found; SQL statement:
 alter table PolytomousKey_Annotation_AUD drop constraint FK3281DB8734869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_CREDIT" not found; SQL statement:
 alter table PolytomousKey_Credit drop constraint FKADC940032D1B9F [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_CREDIT" not found; SQL statement:
 alter table PolytomousKey_Credit drop constraint FKADC940089D97CB [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_CREDIT_AUD" not found; SQL statement:
 alter table PolytomousKey_Credit_AUD drop constraint FK629EC1D134869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_EXTENSION" not found; SQL statement:
 alter table PolytomousKey_Extension drop constraint FKAE34C1D8927DE9DF [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_EXTENSION" not found; SQL statement:
 alter table PolytomousKey_Extension drop constraint FKAE34C1D889D97CB [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_EXTENSION_AUD" not found; SQL statement:
 alter table PolytomousKey_Extension_AUD drop constraint FK1FFC43A934869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_MARKER" not found; SQL statement:
 alter table PolytomousKey_Marker drop constraint FK1B037D41777265A1 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_MARKER" not found; SQL statement:
 alter table PolytomousKey_Marker drop constraint FK1B037D4189D97CB [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_MARKER_AUD" not found; SQL statement:
 alter table PolytomousKey_Marker_AUD drop constraint FKC6BD229234869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_NAMEDAREA" not found; SQL statement:
 alter table PolytomousKey_NamedArea drop constraint FK1C727CFF3FF8E7B2 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_NAMEDAREA" not found; SQL statement:
 alter table PolytomousKey_NamedArea drop constraint FK1C727CFF89D97CB [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_NAMEDAREA_AUD" not found; SQL statement:
 alter table PolytomousKey_NamedArea_AUD drop constraint FK750A135034869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table PolytomousKey_OriginalSourceBase drop constraint FK839208C43A6735D9 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table PolytomousKey_OriginalSourceBase drop constraint FK839208C489D97CB [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_ORIGINALSOURCEBASE_AUD" not found; SQL statement:
 alter table PolytomousKey_OriginalSourceBase_AUD drop constraint FKE644349534869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_RIGHTSINFO" not found; SQL statement:
 alter table PolytomousKey_RightsInfo drop constraint FK328DA4ACC13F7B21 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_RIGHTSINFO" not found; SQL statement:
 alter table PolytomousKey_RightsInfo drop constraint FK328DA4AC89D97CB [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_RIGHTSINFO_AUD" not found; SQL statement:
 alter table PolytomousKey_RightsInfo_AUD drop constraint FK34BF9C7D34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_SCOPE" not found; SQL statement:
 alter table PolytomousKey_Scope drop constraint FK8D97986D5431B96E [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_SCOPE" not found; SQL statement:
 alter table PolytomousKey_Scope drop constraint FK8D97986D89D97CB [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_SCOPE_AUD" not found; SQL statement:
 alter table PolytomousKey_Scope_AUD drop constraint FK4E37C7BE34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_TAXON" not found; SQL statement:
 alter table PolytomousKey_Taxon drop constraint FK8DA4E8E3DE9A3E39 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_TAXON" not found; SQL statement:
 alter table PolytomousKey_Taxon drop constraint FK8DA4E8E389D97CB [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_TAXONBASE" not found; SQL statement:
 alter table PolytomousKey_TaxonBase drop constraint FKED8F3A547C3D0017 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_TAXONBASE" not found; SQL statement:
 alter table PolytomousKey_TaxonBase drop constraint FKED8F3A5489D97CB [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_TAXONBASE_AUD" not found; SQL statement:
 alter table PolytomousKey_TaxonBase_AUD drop constraint FKC42E1E2534869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_TAXON_AUD" not found; SQL statement:
 alter table PolytomousKey_Taxon_AUD drop constraint FKED9BED3434869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "PRIMER" not found; SQL statement:
 alter table Primer drop constraint FK8EFB89F34FF2DB2C [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "PRIMER" not found; SQL statement:
 alter table Primer drop constraint FK8EFB89F3BC5DA539 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "PRIMER" not found; SQL statement:
 alter table Primer drop constraint FK8EFB89F3D0374392 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "PRIMER" not found; SQL statement:
 alter table Primer drop constraint FK8EFB89F3D57FFDD5 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "PRIMER_AUD" not found; SQL statement:
 alter table Primer_AUD drop constraint FK319B864434869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "PRIMER_ANNOTATION" not found; SQL statement:
 alter table Primer_Annotation drop constraint FK9044ED1B1E403E0B [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "PRIMER_ANNOTATION" not found; SQL statement:
 alter table Primer_Annotation drop constraint FK9044ED1B48BD1F55 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "PRIMER_ANNOTATION_AUD" not found; SQL statement:
 alter table Primer_Annotation_AUD drop constraint FKDBAF156C34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "PRIMER_MARKER" not found; SQL statement:
 alter table Primer_Marker drop constraint FKF6C76C26777265A1 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "PRIMER_MARKER" not found; SQL statement:
 alter table Primer_Marker drop constraint FKF6C76C2648BD1F55 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "PRIMER_MARKER_AUD" not found; SQL statement:
 alter table Primer_Marker_AUD drop constraint FK2F7516F734869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE" not found; SQL statement:
 alter table Reference drop constraint FK404D5F2B4FF2DB2C [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE" not found; SQL statement:
 alter table Reference drop constraint FK404D5F2BBC5DA539 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE" not found; SQL statement:
 alter table Reference drop constraint FK404D5F2B697665E [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE" not found; SQL statement:
 alter table Reference drop constraint FK404D5F2BAD54327F [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE" not found; SQL statement:
 alter table Reference drop constraint FK404D5F2B403E17F4 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE" not found; SQL statement:
 alter table Reference drop constraint FK404D5F2BAEC3B8B8 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_AUD" not found; SQL statement:
 alter table Reference_AUD drop constraint FK8F0FFF7C34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_ANNOTATION" not found; SQL statement:
 alter table Reference_Annotation drop constraint FKFC824E31E403E0B [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_ANNOTATION" not found; SQL statement:
 alter table Reference_Annotation drop constraint FKFC824E38D0FB4DA [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_ANNOTATION_AUD" not found; SQL statement:
 alter table Reference_Annotation_AUD drop constraint FKF3C1293434869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_CREDIT" not found; SQL statement:
 alter table Reference_Credit drop constraint FK5BC6DEAD32D1B9F [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_CREDIT" not found; SQL statement:
 alter table Reference_Credit drop constraint FK5BC6DEAD8D0FB4DA [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_CREDIT_AUD" not found; SQL statement:
 alter table Reference_Credit_AUD drop constraint FK4AD9EDFE34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_EXTENSION" not found; SQL statement:
 alter table Reference_Extension drop constraint FKDEFCDC0B927DE9DF [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_EXTENSION" not found; SQL statement:
 alter table Reference_Extension drop constraint FKDEFCDC0B8D0FB4DA [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_EXTENSION_AUD" not found; SQL statement:
 alter table Reference_Extension_AUD drop constraint FK1DF60C5C34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_MARKER" not found; SQL statement:
 alter table Reference_Marker drop constraint FK6BEDC7EE777265A1 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_MARKER" not found; SQL statement:
 alter table Reference_Marker drop constraint FK6BEDC7EE8D0FB4DA [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_MARKER_AUD" not found; SQL statement:
 alter table Reference_Marker_AUD drop constraint FKAEF84EBF34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_MEDIA" not found; SQL statement:
 alter table Reference_Media drop constraint FKBBEF5B0C2C29593 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_MEDIA" not found; SQL statement:
 alter table Reference_Media drop constraint FKBBEF5B08D0FB4DA [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_MEDIA_AUD" not found; SQL statement:
 alter table Reference_Media_AUD drop constraint FK8318CB8134869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table Reference_OriginalSourceBase drop constraint FKD3E8B7F13A6735D9 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table Reference_OriginalSourceBase drop constraint FKD3E8B7F18D0FB4DA [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_ORIGINALSOURCEBASE_AUD" not found; SQL statement:
 alter table Reference_OriginalSourceBase_AUD drop constraint FKC025854234869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_RIGHTSINFO" not found; SQL statement:
 alter table Reference_RightsInfo drop constraint FK1AC8D0D9C13F7B21 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_RIGHTSINFO" not found; SQL statement:
 alter table Reference_RightsInfo drop constraint FK1AC8D0D98D0FB4DA [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_RIGHTSINFO_AUD" not found; SQL statement:
 alter table Reference_RightsInfo_AUD drop constraint FKF5FEEA2A34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "RELATIONSHIPTERMBASE_INVERSEREPRESENTATION" not found; SQL statement:
 alter table RelationshipTermBase_inverseRepresentation drop constraint FK98592F33473FB677 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "RELATIONSHIPTERMBASE_INVERSEREPRESENTATION" not found; SQL statement:
 alter table RelationshipTermBase_inverseRepresentation drop constraint FK98592F33ECEEF4AF [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "RELATIONSHIPTERMBASE_INVERSEREPRESENTATION_AUD" not found; SQL statement:
 alter table RelationshipTermBase_inverseRepresentation_AUD drop constraint FK5D248B8434869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REPRESENTATION" not found; SQL statement:
 alter table Representation drop constraint FK9C4724ED4FF2DB2C [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REPRESENTATION" not found; SQL statement:
 alter table Representation drop constraint FK9C4724EDBC5DA539 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REPRESENTATION" not found; SQL statement:
 alter table Representation drop constraint FK9C4724EDE8D36B00 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REPRESENTATION_AUD" not found; SQL statement:
 alter table Representation_AUD drop constraint FK294D143E34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REPRESENTATION_ANNOTATION" not found; SQL statement:
 alter table Representation_Annotation drop constraint FK371091E11E403E0B [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REPRESENTATION_ANNOTATION" not found; SQL statement:
 alter table Representation_Annotation drop constraint FK371091E147E8AE60 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REPRESENTATION_ANNOTATION_AUD" not found; SQL statement:
 alter table Representation_Annotation_AUD drop constraint FK36EEE73234869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REPRESENTATION_MARKER" not found; SQL statement:
 alter table Representation_Marker drop constraint FK560063EC777265A1 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REPRESENTATION_MARKER" not found; SQL statement:
 alter table Representation_Marker drop constraint FK560063EC47E8AE60 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REPRESENTATION_MARKER_AUD" not found; SQL statement:
 alter table Representation_Marker_AUD drop constraint FKD640BBBD34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "RIGHTSINFO" not found; SQL statement:
 alter table RightsInfo drop constraint FK252273454FF2DB2C [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "RIGHTSINFO" not found; SQL statement:
 alter table RightsInfo drop constraint FK25227345BC5DA539 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "RIGHTSINFO" not found; SQL statement:
 alter table RightsInfo drop constraint FK25227345E8D36B00 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "RIGHTSINFO" not found; SQL statement:
 alter table RightsInfo drop constraint FK25227345F7976FC5 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "RIGHTSINFO" not found; SQL statement:
 alter table RightsInfo drop constraint FK25227345E6D2D338 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "RIGHTSINFO_AUD" not found; SQL statement:
 alter table RightsInfo_AUD drop constraint FK1CA9769634869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "RIGHTSINFO_ANNOTATION" not found; SQL statement:
 alter table RightsInfo_Annotation drop constraint FKECC95C891E403E0B [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "RIGHTSINFO_ANNOTATION" not found; SQL statement:
 alter table RightsInfo_Annotation drop constraint FKECC95C89EFE62333 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "RIGHTSINFO_ANNOTATION_AUD" not found; SQL statement:
 alter table RightsInfo_Annotation_AUD drop constraint FK78721DDA34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "RIGHTSINFO_MARKER" not found; SQL statement:
 alter table RightsInfo_Marker drop constraint FK81D8C294777265A1 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "RIGHTSINFO_MARKER" not found; SQL statement:
 alter table RightsInfo_Marker drop constraint FK81D8C294EFE62333 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "RIGHTSINFO_MARKER_AUD" not found; SQL statement:
 alter table RightsInfo_Marker_AUD drop constraint FK8BF9866534869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SEQUENCE" not found; SQL statement:
 alter table Sequence drop constraint FK544ADBE14FF2DB2C [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SEQUENCE" not found; SQL statement:
 alter table Sequence drop constraint FK544ADBE1BC5DA539 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SEQUENCE" not found; SQL statement:
 alter table Sequence drop constraint FK544ADBE19F65E72B [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SEQUENCE" not found; SQL statement:
 alter table Sequence drop constraint FK544ADBE16D2CE418 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SEQUENCE" not found; SQL statement:
 alter table Sequence drop constraint FK544ADBE1E671A9DF [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SEQUENCE_AUD" not found; SQL statement:
 alter table Sequence_AUD drop constraint FK39F4313234869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SEQUENCE_ANNOTATION" not found; SQL statement:
 alter table Sequence_Annotation drop constraint FK1010BA6D1E403E0B [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SEQUENCE_ANNOTATION" not found; SQL statement:
 alter table Sequence_Annotation drop constraint FK1010BA6DD57FFDD5 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SEQUENCE_ANNOTATION_AUD" not found; SQL statement:
 alter table Sequence_Annotation_AUD drop constraint FKCB4FE9BE34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SEQUENCE_MARKER" not found; SQL statement:
 alter table Sequence_Marker drop constraint FK3D22B278777265A1 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SEQUENCE_MARKER" not found; SQL statement:
 alter table Sequence_Marker drop constraint FK3D22B278D57FFDD5 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SEQUENCE_MARKER_AUD" not found; SQL statement:
 alter table Sequence_Marker_AUD drop constraint FKAF40E44934869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SEQUENCE_REFERENCE" not found; SQL statement:
 alter table Sequence_Reference drop constraint FK6944904D1DDDC219 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SEQUENCE_REFERENCE" not found; SQL statement:
 alter table Sequence_Reference drop constraint FK6944904DD57FFDD5 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SEQUENCE_REFERENCE_AUD" not found; SQL statement:
 alter table Sequence_Reference_AUD drop constraint FK18E5CF9E34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SEQUENCE_SINGLEREAD" not found; SQL statement:
 alter table Sequence_SingleRead drop constraint FKA334BD3CBBC12E3E [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SEQUENCE_SINGLEREAD" not found; SQL statement:
 alter table Sequence_SingleRead drop constraint FKA334BD3CD57FFDD5 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SEQUENCE_SINGLEREAD_AUD" not found; SQL statement:
 alter table Sequence_SingleRead_AUD drop constraint FK5407ED0D34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SINGLEREAD" not found; SQL statement:
 alter table SingleRead drop constraint FKAD45CA1E4FF2DB2C [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SINGLEREAD" not found; SQL statement:
 alter table SingleRead drop constraint FKAD45CA1EBC5DA539 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SINGLEREAD" not found; SQL statement:
 alter table SingleRead drop constraint FKAD45CA1E3DA462D5 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SINGLEREAD" not found; SQL statement:
 alter table SingleRead drop constraint FKAD45CA1E614CEB1F [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SINGLEREAD" not found; SQL statement:
 alter table SingleRead drop constraint FKAD45CA1EE0EBCFFE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SINGLEREAD" not found; SQL statement:
 alter table SingleRead drop constraint FKAD45CA1E55DDFE96 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SINGLEREAD" not found; SQL statement:
 alter table SingleRead drop constraint FKAD45CA1E48BD1F55 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SINGLEREAD_AUD" not found; SQL statement:
 alter table SingleRead_AUD drop constraint FKA323B8EF34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SINGLEREAD_ANNOTATION" not found; SQL statement:
 alter table SingleRead_Annotation drop constraint FK33E974101E403E0B [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SINGLEREAD_ANNOTATION" not found; SQL statement:
 alter table SingleRead_Annotation drop constraint FK33E974103A5A5E15 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SINGLEREAD_ANNOTATION_AUD" not found; SQL statement:
 alter table SingleRead_Annotation_AUD drop constraint FK7B1D19E134869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SINGLEREAD_MARKER" not found; SQL statement:
 alter table SingleRead_Marker drop constraint FKCF47B59B777265A1 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SINGLEREAD_MARKER" not found; SQL statement:
 alter table SingleRead_Marker drop constraint FKCF47B59B3A5A5E15 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SINGLEREAD_MARKER_AUD" not found; SQL statement:
 alter table SingleRead_Marker_AUD drop constraint FKD3199DEC34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE" not found; SQL statement:
 alter table SpecimenOrObservationBase drop constraint FK21CA32724FF2DB2C [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE" not found; SQL statement:
 alter table SpecimenOrObservationBase drop constraint FK21CA3272BC5DA539 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE" not found; SQL statement:
 alter table SpecimenOrObservationBase drop constraint FK21CA3272F53E6AFA [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE" not found; SQL statement:
 alter table SpecimenOrObservationBase drop constraint FK21CA32728C35BD07 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE" not found; SQL statement:
 alter table SpecimenOrObservationBase drop constraint FK21CA3272E35D77A3 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE" not found; SQL statement:
 alter table SpecimenOrObservationBase drop constraint FK21CA3272EB62BE9A [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE" not found; SQL statement:
 alter table SpecimenOrObservationBase drop constraint FK21CA3272156CF96 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE" not found; SQL statement:
 alter table SpecimenOrObservationBase drop constraint FK21CA3272C8505DB [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE" not found; SQL statement:
 alter table SpecimenOrObservationBase drop constraint FK21CA32727CC340C5 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE" not found; SQL statement:
 alter table SpecimenOrObservationBase drop constraint FK21CA32724FF2F98B [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE" not found; SQL statement:
 alter table SpecimenOrObservationBase drop constraint FK21CA3272F95F225A [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE" not found; SQL statement:
 alter table SpecimenOrObservationBase drop constraint FK21CA3272DADF76EA [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_AUD" not found; SQL statement:
 alter table SpecimenOrObservationBase_AUD drop constraint FKF3D3D74334869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_ANNOTATION" not found; SQL statement:
 alter table SpecimenOrObservationBase_Annotation drop constraint FK365E4F3C1E403E0B [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_ANNOTATION" not found; SQL statement:
 alter table SpecimenOrObservationBase_Annotation drop constraint FK365E4F3C3B8A5ABA [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_ANNOTATION_AUD" not found; SQL statement:
 alter table SpecimenOrObservationBase_Annotation_AUD drop constraint FK34187F0D34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_CREDIT" not found; SQL statement:
 alter table SpecimenOrObservationBase_Credit drop constraint FK7E3A1D8632D1B9F [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_CREDIT" not found; SQL statement:
 alter table SpecimenOrObservationBase_Credit drop constraint FK7E3A1D863B8A5ABA [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_CREDIT_AUD" not found; SQL statement:
 alter table SpecimenOrObservationBase_Credit_AUD drop constraint FK7170185734869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_DERIVATIONEVENT" not found; SQL statement:
 alter table SpecimenOrObservationBase_DerivationEvent drop constraint FK20132036BD59A1AD [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_DERIVATIONEVENT" not found; SQL statement:
 alter table SpecimenOrObservationBase_DerivationEvent drop constraint FK2013203654C216AA [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_DERIVATIONEVENT_AUD" not found; SQL statement:
 alter table SpecimenOrObservationBase_DerivationEvent_AUD drop constraint FKA4A8430734869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_EXTENSION" not found; SQL statement:
 alter table SpecimenOrObservationBase_Extension drop constraint FKE03B8292927DE9DF [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_EXTENSION" not found; SQL statement:
 alter table SpecimenOrObservationBase_Extension drop constraint FKE03B82923B8A5ABA [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_EXTENSION_AUD" not found; SQL statement:
 alter table SpecimenOrObservationBase_Extension_AUD drop constraint FK7AE0176334869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_LANGUAGESTRING" not found; SQL statement:
 alter table SpecimenOrObservationBase_LanguageString drop constraint FKCFAA9316CD55E0D6 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_LANGUAGESTRING" not found; SQL statement:
 alter table SpecimenOrObservationBase_LanguageString drop constraint FKCFAA93168028C309 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_LANGUAGESTRING" not found; SQL statement:
 alter table SpecimenOrObservationBase_LanguageString drop constraint FKCFAA93163B8A5ABA [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_LANGUAGESTRING_AUD" not found; SQL statement:
 alter table SpecimenOrObservationBase_LanguageString_AUD drop constraint FK38B45E734869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_MARKER" not found; SQL statement:
 alter table SpecimenOrObservationBase_Marker drop constraint FK8E6106C7777265A1 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_MARKER" not found; SQL statement:
 alter table SpecimenOrObservationBase_Marker drop constraint FK8E6106C73B8A5ABA [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_MARKER_AUD" not found; SQL statement:
 alter table SpecimenOrObservationBase_Marker_AUD drop constraint FKD58E791834869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table SpecimenOrObservationBase_OriginalSourceBase drop constraint FKCA7F794A3A6735D9 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table SpecimenOrObservationBase_OriginalSourceBase drop constraint FKCA7F794A3B8A5ABA [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_ORIGINALSOURCEBASE_AUD" not found; SQL statement:
 alter table SpecimenOrObservationBase_OriginalSourceBase_AUD drop constraint FK2059F21B34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_RIGHTSINFO" not found; SQL statement:
 alter table SpecimenOrObservationBase_RightsInfo drop constraint FK415EFB32C13F7B21 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_RIGHTSINFO" not found; SQL statement:
 alter table SpecimenOrObservationBase_RightsInfo drop constraint FK415EFB323B8A5ABA [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_RIGHTSINFO_AUD" not found; SQL statement:
 alter table SpecimenOrObservationBase_RightsInfo_AUD drop constraint FK3656400334869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_SEQUENCE" not found; SQL statement:
 alter table SpecimenOrObservationBase_Sequence drop constraint FKBBF27B0E35B10F24 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_SEQUENCE" not found; SQL statement:
 alter table SpecimenOrObservationBase_Sequence drop constraint FKBBF27B0E7EE2770E [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_SEQUENCE_AUD" not found; SQL statement:
 alter table SpecimenOrObservationBase_Sequence_AUD drop constraint FK392E71DF34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "STATEDATA" not found; SQL statement:
 alter table StateData drop constraint FKFB1697BB4FF2DB2C [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "STATEDATA" not found; SQL statement:
 alter table StateData drop constraint FKFB1697BBBC5DA539 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "STATEDATA" not found; SQL statement:
 alter table StateData drop constraint FKFB1697BB682A4E4B [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "STATEDATA_AUD" not found; SQL statement:
 alter table StateData_AUD drop constraint FKDA6A700C34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "STATEDATA_DEFINEDTERMBASE" not found; SQL statement:
 alter table StateData_DefinedTermBase drop constraint FK107321E2F4E35BCD [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "STATEDATA_DEFINEDTERMBASE" not found; SQL statement:
 alter table StateData_DefinedTermBase drop constraint FK107321E28E7BF9AB [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "STATEDATA_DEFINEDTERMBASE_AUD" not found; SQL statement:
 alter table StateData_DefinedTermBase_AUD drop constraint FK7C978EB334869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "STATEDATA_LANGUAGESTRING" not found; SQL statement:
 alter table StateData_LanguageString drop constraint FK93FFD2ADF05D08D4 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "STATEDATA_LANGUAGESTRING" not found; SQL statement:
 alter table StateData_LanguageString drop constraint FK93FFD2AD9682414B [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "STATEDATA_LANGUAGESTRING" not found; SQL statement:
 alter table StateData_LanguageString drop constraint FK93FFD2AD8E7BF9AB [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "STATEDATA_LANGUAGESTRING_AUD" not found; SQL statement:
 alter table StateData_LanguageString_AUD drop constraint FK1578E1FE34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "STATISTICALMEASUREMENTVALUE" not found; SQL statement:
 alter table StatisticalMeasurementValue drop constraint FK2DCE02904FF2DB2C [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "STATISTICALMEASUREMENTVALUE" not found; SQL statement:
 alter table StatisticalMeasurementValue drop constraint FK2DCE0290BC5DA539 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "STATISTICALMEASUREMENTVALUE" not found; SQL statement:
 alter table StatisticalMeasurementValue drop constraint FK2DCE02904C428112 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "STATISTICALMEASUREMENTVALUE_AUD" not found; SQL statement:
 alter table StatisticalMeasurementValue_AUD drop constraint FKBB16686134869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "STATISTICALMEASUREMENTVALUE_DEFINEDTERMBASE" not found; SQL statement:
 alter table StatisticalMeasurementValue_DefinedTermBase drop constraint FK686C42B7F4E35BCD [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "STATISTICALMEASUREMENTVALUE_DEFINEDTERMBASE" not found; SQL statement:
 alter table StatisticalMeasurementValue_DefinedTermBase drop constraint FK686C42B75C9F4F2B [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "STATISTICALMEASUREMENTVALUE_DEFINEDTERMBASE_AUD" not found; SQL statement:
 alter table StatisticalMeasurementValue_DefinedTermBase_AUD drop constraint FKFEBA3D0834869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SYNONYMRELATIONSHIP" not found; SQL statement:
 alter table SynonymRelationship drop constraint FKF483ADB34FF2DB2C [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SYNONYMRELATIONSHIP" not found; SQL statement:
 alter table SynonymRelationship drop constraint FKF483ADB3BC5DA539 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SYNONYMRELATIONSHIP" not found; SQL statement:
 alter table SynonymRelationship drop constraint FKF483ADB3AEB7F3BE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SYNONYMRELATIONSHIP" not found; SQL statement:
 alter table SynonymRelationship drop constraint FKF483ADB34BAC703F [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SYNONYMRELATIONSHIP" not found; SQL statement:
 alter table SynonymRelationship drop constraint FKF483ADB3F8991B9D [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SYNONYMRELATIONSHIP" not found; SQL statement:
 alter table SynonymRelationship drop constraint FKF483ADB380924EEC [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SYNONYMRELATIONSHIP_AUD" not found; SQL statement:
 alter table SynonymRelationship_AUD drop constraint FK8AEBCA0434869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SYNONYMRELATIONSHIP_ANNOTATION" not found; SQL statement:
 alter table SynonymRelationship_Annotation drop constraint FKF494F15B1E403E0B [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SYNONYMRELATIONSHIP_ANNOTATION" not found; SQL statement:
 alter table SynonymRelationship_Annotation drop constraint FKF494F15B260A8379 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SYNONYMRELATIONSHIP_ANNOTATION_AUD" not found; SQL statement:
 alter table SynonymRelationship_Annotation_AUD drop constraint FKD3E2F9AC34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SYNONYMRELATIONSHIP_MARKER" not found; SQL statement:
 alter table SynonymRelationship_Marker drop constraint FK7A439066777265A1 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SYNONYMRELATIONSHIP_MARKER" not found; SQL statement:
 alter table SynonymRelationship_Marker drop constraint FK7A439066260A8379 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SYNONYMRELATIONSHIP_MARKER_AUD" not found; SQL statement:
 alter table SynonymRelationship_Marker_AUD drop constraint FK93C51B3734869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE" not found; SQL statement:
 alter table TaxonBase drop constraint FK9249B49B4FF2DB2C [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE" not found; SQL statement:
 alter table TaxonBase drop constraint FK9249B49BBC5DA539 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE" not found; SQL statement:
 alter table TaxonBase drop constraint FK9249B49B8492378F [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE" not found; SQL statement:
 alter table TaxonBase drop constraint FK9249B49B74FED214 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE" not found; SQL statement:
 alter table TaxonBase drop constraint FK9249B49B7C7B5AED [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE_AUD" not found; SQL statement:
 alter table TaxonBase_AUD drop constraint FK37041CEC34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE_ANNOTATION" not found; SQL statement:
 alter table TaxonBase_Annotation drop constraint FK41ED09731E403E0B [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE_ANNOTATION" not found; SQL statement:
 alter table TaxonBase_Annotation drop constraint FK41ED09739C9D39 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE_ANNOTATION_AUD" not found; SQL statement:
 alter table TaxonBase_Annotation_AUD drop constraint FK8C145C434869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE_CREDIT" not found; SQL statement:
 alter table TaxonBase_Credit drop constraint FK4CB48B3D32D1B9F [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE_CREDIT" not found; SQL statement:
 alter table TaxonBase_Credit drop constraint FK4CB48B3D9C9D39 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE_CREDIT_AUD" not found; SQL statement:
 alter table TaxonBase_Credit_AUD drop constraint FK7CFED28E34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE_EXTENSION" not found; SQL statement:
 alter table TaxonBase_Extension drop constraint FKF961257B927DE9DF [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE_EXTENSION" not found; SQL statement:
 alter table TaxonBase_Extension drop constraint FKF961257B9C9D39 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE_EXTENSION_AUD" not found; SQL statement:
 alter table TaxonBase_Extension_AUD drop constraint FK71381DCC34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE_MARKER" not found; SQL statement:
 alter table TaxonBase_Marker drop constraint FK5CDB747E777265A1 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE_MARKER" not found; SQL statement:
 alter table TaxonBase_Marker drop constraint FK5CDB747E9C9D39 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE_MARKER_AUD" not found; SQL statement:
 alter table TaxonBase_Marker_AUD drop constraint FKE11D334F34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table TaxonBase_OriginalSourceBase drop constraint FKFB680C813A6735D9 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table TaxonBase_OriginalSourceBase drop constraint FKFB680C819C9D39 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE_ORIGINALSOURCEBASE_AUD" not found; SQL statement:
 alter table TaxonBase_OriginalSourceBase_AUD drop constraint FKB7C811D234869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE_RIGHTSINFO" not found; SQL statement:
 alter table TaxonBase_RightsInfo drop constraint FK4CEDB569C13F7B21 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE_RIGHTSINFO" not found; SQL statement:
 alter table TaxonBase_RightsInfo drop constraint FK4CEDB5699C9D39 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE_RIGHTSINFO_AUD" not found; SQL statement:
 alter table TaxonBase_RightsInfo_AUD drop constraint FKAFF06BA34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONINTERACTION_LANGUAGESTRING" not found; SQL statement:
 alter table TaxonInteraction_LanguageString drop constraint FK579A1DC02BEBA58D [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONINTERACTION_LANGUAGESTRING" not found; SQL statement:
 alter table TaxonInteraction_LanguageString drop constraint FK579A1DC028459272 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONINTERACTION_LANGUAGESTRING" not found; SQL statement:
 alter table TaxonInteraction_LanguageString drop constraint FK579A1DC086C86FE0 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONINTERACTION_LANGUAGESTRING_AUD" not found; SQL statement:
 alter table TaxonInteraction_LanguageString_AUD drop constraint FK9E016B9134869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE" not found; SQL statement:
 alter table TaxonNameBase drop constraint FKB4870C64FF2DB2C [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE" not found; SQL statement:
 alter table TaxonNameBase drop constraint FKB4870C6BC5DA539 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE" not found; SQL statement:
 alter table TaxonNameBase drop constraint FKB4870C6BFEAE500 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE" not found; SQL statement:
 alter table TaxonNameBase drop constraint FKB4870C6617E62B3 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE" not found; SQL statement:
 alter table TaxonNameBase drop constraint FKB4870C6D7BE55A0 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE" not found; SQL statement:
 alter table TaxonNameBase drop constraint FKB4870C62B4FEDD6 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE" not found; SQL statement:
 alter table TaxonNameBase drop constraint FKB4870C6B14B73EF [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE" not found; SQL statement:
 alter table TaxonNameBase drop constraint FKB4870C67F90DF03 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE" not found; SQL statement:
 alter table TaxonNameBase drop constraint FKB4870C662AD57A2 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_AUD" not found; SQL statement:
 alter table TaxonNameBase_AUD drop constraint FK5CA2CB9734869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_ANNOTATION" not found; SQL statement:
 alter table TaxonNameBase_Annotation drop constraint FK9E7794681E403E0B [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_ANNOTATION" not found; SQL statement:
 alter table TaxonNameBase_Annotation drop constraint FK9E7794688C85CF94 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_ANNOTATION_AUD" not found; SQL statement:
 alter table TaxonNameBase_Annotation_AUD drop constraint FKB6734E3934869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_CREDIT" not found; SQL statement:
 alter table TaxonNameBase_Credit drop constraint FK29BCD8B232D1B9F [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_CREDIT" not found; SQL statement:
 alter table TaxonNameBase_Credit drop constraint FK29BCD8B28C85CF94 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_CREDIT_AUD" not found; SQL statement:
 alter table TaxonNameBase_Credit_AUD drop constraint FKD9895D8334869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_EXTENSION" not found; SQL statement:
 alter table TaxonNameBase_Extension drop constraint FKC28EE7E6927DE9DF [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_EXTENSION" not found; SQL statement:
 alter table TaxonNameBase_Extension drop constraint FKC28EE7E68C85CF94 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_EXTENSION_AUD" not found; SQL statement:
 alter table TaxonNameBase_Extension_AUD drop constraint FK8F98B2B734869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_MARKER" not found; SQL statement:
 alter table TaxonNameBase_Marker drop constraint FK39E3C1F3777265A1 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_MARKER" not found; SQL statement:
 alter table TaxonNameBase_Marker drop constraint FK39E3C1F38C85CF94 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_MARKER_AUD" not found; SQL statement:
 alter table TaxonNameBase_Marker_AUD drop constraint FK3DA7BE4434869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_NOMENCLATURALSTATUS" not found; SQL statement:
 alter table TaxonNameBase_NomenclaturalStatus drop constraint FK560BA7926615E90D [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_NOMENCLATURALSTATUS" not found; SQL statement:
 alter table TaxonNameBase_NomenclaturalStatus drop constraint FK560BA7928C85CF94 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_NOMENCLATURALSTATUS_AUD" not found; SQL statement:
 alter table TaxonNameBase_NomenclaturalStatus_AUD drop constraint FK9215BC6334869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table TaxonNameBase_OriginalSourceBase drop constraint FKF746D2763A6735D9 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table TaxonNameBase_OriginalSourceBase drop constraint FKF746D2768C85CF94 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_ORIGINALSOURCEBASE_AUD" not found; SQL statement:
 alter table TaxonNameBase_OriginalSourceBase_AUD drop constraint FK7A38D54734869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_RIGHTSINFO" not found; SQL statement:
 alter table TaxonNameBase_RightsInfo drop constraint FKA978405EC13F7B21 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_RIGHTSINFO" not found; SQL statement:
 alter table TaxonNameBase_RightsInfo drop constraint FKA978405E8C85CF94 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_RIGHTSINFO_AUD" not found; SQL statement:
 alter table TaxonNameBase_RightsInfo_AUD drop constraint FKB8B10F2F34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_TYPEDESIGNATIONBASE" not found; SQL statement:
 alter table TaxonNameBase_TypeDesignationBase drop constraint FKC0D6BBB5C7DF530C [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_TYPEDESIGNATIONBASE" not found; SQL statement:
 alter table TaxonNameBase_TypeDesignationBase drop constraint FKC0D6BBB58C85CF94 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_TYPEDESIGNATIONBASE_AUD" not found; SQL statement:
 alter table TaxonNameBase_TypeDesignationBase_AUD drop constraint FKBB24070634869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNODE" not found; SQL statement:
 alter table TaxonNode drop constraint FK924F5BCC4FF2DB2C [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNODE" not found; SQL statement:
 alter table TaxonNode drop constraint FK924F5BCCBC5DA539 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNODE" not found; SQL statement:
 alter table TaxonNode drop constraint FK924F5BCC84A3CE1B [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNODE" not found; SQL statement:
 alter table TaxonNode drop constraint FK924F5BCC39DB2DFB [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNODE" not found; SQL statement:
 alter table TaxonNode drop constraint FK924F5BCC381381B5 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNODE" not found; SQL statement:
 alter table TaxonNode drop constraint FK924F5BCCCC05993E [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNODE" not found; SQL statement:
 alter table TaxonNode drop constraint FK924F5BCCDE9A3E39 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNODE_AUD" not found; SQL statement:
 alter table TaxonNode_AUD drop constraint FKE090C39D34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNODE_ANNOTATION" not found; SQL statement:
 alter table TaxonNode_Annotation drop constraint FKD8A9A9A21E403E0B [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNODE_ANNOTATION" not found; SQL statement:
 alter table TaxonNode_Annotation drop constraint FKD8A9A9A2927D8399 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNODE_ANNOTATION_AUD" not found; SQL statement:
 alter table TaxonNode_Annotation_AUD drop constraint FKB2C4367334869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNODE_MARKER" not found; SQL statement:
 alter table TaxonNode_Marker drop constraint FK395842D777265A1 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNODE_MARKER" not found; SQL statement:
 alter table TaxonNode_Marker drop constraint FK395842D927D8399 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNODE_MARKER_AUD" not found; SQL statement:
 alter table TaxonNode_Marker_AUD drop constraint FK77D9D37E34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONRELATIONSHIP" not found; SQL statement:
 alter table TaxonRelationship drop constraint FK7482BA024FF2DB2C [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONRELATIONSHIP" not found; SQL statement:
 alter table TaxonRelationship drop constraint FK7482BA02BC5DA539 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONRELATIONSHIP" not found; SQL statement:
 alter table TaxonRelationship drop constraint FK7482BA02AEB7F3BE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONRELATIONSHIP" not found; SQL statement:
 alter table TaxonRelationship drop constraint FK7482BA02E71EF6CE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONRELATIONSHIP" not found; SQL statement:
 alter table TaxonRelationship drop constraint FK7482BA02F8991B9D [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONRELATIONSHIP" not found; SQL statement:
 alter table TaxonRelationship drop constraint FK7482BA02F11BD77B [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONRELATIONSHIP_AUD" not found; SQL statement:
 alter table TaxonRelationship_AUD drop constraint FKA0DE16D334869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONRELATIONSHIP_ANNOTATION" not found; SQL statement:
 alter table TaxonRelationship_Annotation drop constraint FK82C86DAC1E403E0B [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONRELATIONSHIP_ANNOTATION" not found; SQL statement:
 alter table TaxonRelationship_Annotation drop constraint FK82C86DAC2BD180D9 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONRELATIONSHIP_ANNOTATION_AUD" not found; SQL statement:
 alter table TaxonRelationship_Annotation_AUD drop constraint FKE86DE57D34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONRELATIONSHIP_MARKER" not found; SQL statement:
 alter table TaxonRelationship_Marker drop constraint FK69FBDD37777265A1 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONRELATIONSHIP_MARKER" not found; SQL statement:
 alter table TaxonRelationship_Marker drop constraint FK69FBDD372BD180D9 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONRELATIONSHIP_MARKER_AUD" not found; SQL statement:
 alter table TaxonRelationship_Marker_AUD drop constraint FK21F8978834869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY" not found; SQL statement:
 alter table TermVocabulary drop constraint FK487AA6924FF2DB2C [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY" not found; SQL statement:
 alter table TermVocabulary drop constraint FK487AA692BC5DA539 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_AUD" not found; SQL statement:
 alter table TermVocabulary_AUD drop constraint FKA6ED3B6334869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_ANNOTATION" not found; SQL statement:
 alter table TermVocabulary_Annotation drop constraint FK76D2071C1E403E0B [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_ANNOTATION" not found; SQL statement:
 alter table TermVocabulary_Annotation drop constraint FK76D2071C258E060 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_ANNOTATION_AUD" not found; SQL statement:
 alter table TermVocabulary_Annotation_AUD drop constraint FK222D46ED34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_CREDIT" not found; SQL statement:
 alter table TermVocabulary_Credit drop constraint FK7604C56632D1B9F [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_CREDIT" not found; SQL statement:
 alter table TermVocabulary_Credit drop constraint FK7604C566258E060 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_CREDIT_AUD" not found; SQL statement:
 alter table TermVocabulary_Credit_AUD drop constraint FKB1E3D03734869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_EXTENSION" not found; SQL statement:
 alter table TermVocabulary_Extension drop constraint FKA8814EB2927DE9DF [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_EXTENSION" not found; SQL statement:
 alter table TermVocabulary_Extension drop constraint FKA8814EB2258E060 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_EXTENSION_AUD" not found; SQL statement:
 alter table TermVocabulary_Extension_AUD drop constraint FKD522D38334869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_MARKER" not found; SQL statement:
 alter table TermVocabulary_Marker drop constraint FK862BAEA7777265A1 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_MARKER" not found; SQL statement:
 alter table TermVocabulary_Marker drop constraint FK862BAEA7258E060 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_MARKER_AUD" not found; SQL statement:
 alter table TermVocabulary_Marker_AUD drop constraint FK160230F834869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table TermVocabulary_OriginalSourceBase drop constraint FK8F2D512A3A6735D9 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table TermVocabulary_OriginalSourceBase drop constraint FK8F2D512A258E060 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_ORIGINALSOURCEBASE_AUD" not found; SQL statement:
 alter table TermVocabulary_OriginalSourceBase_AUD drop constraint FKA898D9FB34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_REPRESENTATION" not found; SQL statement:
 alter table TermVocabulary_Representation drop constraint FKA408B63AB31C4747 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_REPRESENTATION" not found; SQL statement:
 alter table TermVocabulary_Representation drop constraint FKA408B63A258E060 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_REPRESENTATION_AUD" not found; SQL statement:
 alter table TermVocabulary_Representation_AUD drop constraint FK681B370B34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_RIGHTSINFO" not found; SQL statement:
 alter table TermVocabulary_RightsInfo drop constraint FK81D2B312C13F7B21 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_RIGHTSINFO" not found; SQL statement:
 alter table TermVocabulary_RightsInfo drop constraint FK81D2B312258E060 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_RIGHTSINFO_AUD" not found; SQL statement:
 alter table TermVocabulary_RightsInfo_AUD drop constraint FK246B07E334869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TYPEDESIGNATIONBASE" not found; SQL statement:
 alter table TypeDesignationBase drop constraint FK8AC9DCAE4FF2DB2C [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TYPEDESIGNATIONBASE" not found; SQL statement:
 alter table TypeDesignationBase drop constraint FK8AC9DCAEBC5DA539 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TYPEDESIGNATIONBASE" not found; SQL statement:
 alter table TypeDesignationBase drop constraint FK8AC9DCAEAEB7F3BE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TYPEDESIGNATIONBASE" not found; SQL statement:
 alter table TypeDesignationBase drop constraint FK8AC9DCAE9E3ED08 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TYPEDESIGNATIONBASE" not found; SQL statement:
 alter table TypeDesignationBase drop constraint FK8AC9DCAE4CB0F315 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TYPEDESIGNATIONBASE" not found; SQL statement:
 alter table TypeDesignationBase drop constraint FK8AC9DCAEFBFA41D9 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TYPEDESIGNATIONBASE_AUD" not found; SQL statement:
 alter table TypeDesignationBase_AUD drop constraint FK243C037F34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TYPEDESIGNATIONBASE_ANNOTATION" not found; SQL statement:
 alter table TypeDesignationBase_Annotation drop constraint FK4D7327801E403E0B [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TYPEDESIGNATIONBASE_ANNOTATION" not found; SQL statement:
 alter table TypeDesignationBase_Annotation drop constraint FK4D73278044E9E6D4 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TYPEDESIGNATIONBASE_ANNOTATION_AUD" not found; SQL statement:
 alter table TypeDesignationBase_Annotation_AUD drop constraint FK88BF955134869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TYPEDESIGNATIONBASE_MARKER" not found; SQL statement:
 alter table TypeDesignationBase_Marker drop constraint FKB914A10B777265A1 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TYPEDESIGNATIONBASE_MARKER" not found; SQL statement:
 alter table TypeDesignationBase_Marker drop constraint FKB914A10B44E9E6D4 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TYPEDESIGNATIONBASE_MARKER_AUD" not found; SQL statement:
 alter table TypeDesignationBase_Marker_AUD drop constraint FKECA3515C34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "USERACCOUNT" not found; SQL statement:
 alter table UserAccount drop constraint FKB3F13C24FF2DB2C [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "USERACCOUNT" not found; SQL statement:
 alter table UserAccount drop constraint FKB3F13C2AAC1B820 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "USERACCOUNT_AUD" not found; SQL statement:
 alter table UserAccount_AUD drop constraint FK6A57909334869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "USERACCOUNT_GRANTEDAUTHORITYIMPL" not found; SQL statement:
 alter table UserAccount_GrantedAuthorityImpl drop constraint FKFD724D851857F6C2 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "USERACCOUNT_GRANTEDAUTHORITYIMPL" not found; SQL statement:
 alter table UserAccount_GrantedAuthorityImpl drop constraint FKFD724D855EA5DD89 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "USERACCOUNT_PERMISSIONGROUP" not found; SQL statement:
 alter table UserAccount_PermissionGroup drop constraint FK812DE753DA9DCB5F [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "USERACCOUNT_PERMISSIONGROUP" not found; SQL statement:
 alter table UserAccount_PermissionGroup drop constraint FK812DE753887E3D12 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "WORKINGSET" not found; SQL statement:
 alter table WorkingSet drop constraint FK668D5B914FF2DB2C [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "WORKINGSET" not found; SQL statement:
 alter table WorkingSet drop constraint FK668D5B91BC5DA539 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "WORKINGSET" not found; SQL statement:
 alter table WorkingSet drop constraint FK668D5B9123DB7F04 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "WORKINGSET_AUD" not found; SQL statement:
 alter table WorkingSet_AUD drop constraint FK628F58E234869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "WORKINGSET_ANNOTATION" not found; SQL statement:
 alter table WorkingSet_Annotation drop constraint FKCBBA8CBD1E403E0B [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "WORKINGSET_ANNOTATION" not found; SQL statement:
 alter table WorkingSet_Annotation drop constraint FKCBBA8CBDBBD2C869 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "WORKINGSET_ANNOTATION_AUD" not found; SQL statement:
 alter table WorkingSet_Annotation_AUD drop constraint FK1E28140E34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "WORKINGSET_DESCRIPTIONBASE" not found; SQL statement:
 alter table WorkingSet_DescriptionBase drop constraint FK731CC81F33B8A841 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "WORKINGSET_DESCRIPTIONBASE" not found; SQL statement:
 alter table WorkingSet_DescriptionBase drop constraint FK731CC81FBBD2C869 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "WORKINGSET_DESCRIPTIONBASE_AUD" not found; SQL statement:
 alter table WorkingSet_DescriptionBase_AUD drop constraint FK8959CE7034869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "WORKINGSET_MARKER" not found; SQL statement:
 alter table WorkingSet_Marker drop constraint FK9CB22CC8777265A1 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "WORKINGSET_MARKER" not found; SQL statement:
 alter table WorkingSet_Marker drop constraint FK9CB22CC8BBD2C869 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "WORKINGSET_MARKER_AUD" not found; SQL statement:
 alter table WorkingSet_Marker_AUD drop constraint FK6AEAB69934869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "WORKINGSET_REPRESENTATION" not found; SQL statement:
 alter table WorkingSet_Representation drop constraint FKA003835BB31C4747 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "WORKINGSET_REPRESENTATION" not found; SQL statement:
 alter table WorkingSet_Representation drop constraint FKA003835BBBD2C869 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "WORKINGSET_REPRESENTATION_AUD" not found; SQL statement:
 alter table WorkingSet_Representation_AUD drop constraint FK21B88BAC34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "WORKINGSET_TAXONBASE" not found; SQL statement:
 alter table WorkingSet_TaxonBase drop constraint FK34EB896D7C3D0017 [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "WORKINGSET_TAXONBASE" not found; SQL statement:
 alter table WorkingSet_TaxonBase drop constraint FK34EB896DB4555A9A [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "WORKINGSET_TAXONBASE_AUD" not found; SQL statement:
 alter table WorkingSet_TaxonBase_AUD drop constraint FK582B38BE34869AAE [42102-170]
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table AgentBase add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -3142,7 +3142,7 @@ alter table AgentBase add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table Amplification add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -3199,7 +3199,7 @@ alter table Amplification add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table Annotation add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -3256,7 +3256,7 @@ alter table Annotation add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table CDM_VIEW add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -3313,7 +3313,7 @@ alter table CDM_VIEW add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table CdmMetaData add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -3370,7 +3370,7 @@ alter table CdmMetaData add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table Classification add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -3427,7 +3427,7 @@ alter table Classification add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table Collection add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -3484,7 +3484,7 @@ alter table Collection add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table Credit add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -3541,7 +3541,7 @@ alter table Credit add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table DefinedTermBase add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -3598,7 +3598,7 @@ alter table DefinedTermBase add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table DerivationEvent add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -3655,7 +3655,7 @@ alter table DerivationEvent add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table DescriptionBase add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -3712,7 +3712,7 @@ alter table DescriptionBase add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table DescriptionElementBase add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -3769,7 +3769,7 @@ alter table DescriptionElementBase add constraint _UniqueKey unique (uuid) [9004
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table DeterminationEvent add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -3826,7 +3826,7 @@ alter table DeterminationEvent add constraint _UniqueKey unique (uuid) [90045-17
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table Extension add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -3883,7 +3883,7 @@ alter table Extension add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table FeatureNode add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -3940,7 +3940,7 @@ alter table FeatureNode add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:26 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table FeatureTree add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -3997,7 +3997,7 @@ alter table FeatureTree add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:27 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table GatheringEvent add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -4054,7 +4054,7 @@ alter table GatheringEvent add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:27 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table GrantedAuthorityImpl add constraint _UniqueKey unique (uuid, authority) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -4111,7 +4111,7 @@ alter table GrantedAuthorityImpl add constraint _UniqueKey unique (uuid, authori
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:27 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table HomotypicalGroup add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -4168,7 +4168,7 @@ alter table HomotypicalGroup add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:27 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table HybridRelationship add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -4225,7 +4225,7 @@ alter table HybridRelationship add constraint _UniqueKey unique (uuid) [90045-17
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:27 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table InstitutionalMembership add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -4282,7 +4282,7 @@ alter table InstitutionalMembership add constraint _UniqueKey unique (uuid) [900
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:27 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table KeyStatement add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -4339,7 +4339,7 @@ alter table KeyStatement add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:27 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table LSIDAuthority add constraint _UniqueKey unique (uuid, authority) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -4396,7 +4396,7 @@ alter table LSIDAuthority add constraint _UniqueKey unique (uuid, authority) [90
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:27 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table LanguageString add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -4453,7 +4453,7 @@ alter table LanguageString add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:27 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table Marker add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -4510,7 +4510,7 @@ alter table Marker add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:27 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table MaterialOrMethodEvent add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -4567,7 +4567,7 @@ alter table MaterialOrMethodEvent add constraint _UniqueKey unique (uuid) [90045
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:27 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table Media add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -4624,7 +4624,7 @@ alter table Media add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:27 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table MediaRepresentation add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -4681,7 +4681,7 @@ alter table MediaRepresentation add constraint _UniqueKey unique (uuid) [90045-1
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:56 jdbc[2]: exception
+10-09 16:26:27 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table MediaRepresentationPart add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -4738,7 +4738,7 @@ alter table MediaRepresentationPart add constraint _UniqueKey unique (uuid) [900
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:57 jdbc[2]: exception
+10-09 16:26:27 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table NameRelationship add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -4795,7 +4795,7 @@ alter table NameRelationship add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:57 jdbc[2]: exception
+10-09 16:26:27 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table NomenclaturalStatus add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -4852,7 +4852,7 @@ alter table NomenclaturalStatus add constraint _UniqueKey unique (uuid) [90045-1
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:57 jdbc[2]: exception
+10-09 16:26:27 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table OriginalSourceBase add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -4909,7 +4909,7 @@ alter table OriginalSourceBase add constraint _UniqueKey unique (uuid) [90045-17
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:57 jdbc[2]: exception
+10-09 16:26:27 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table PermissionGroup add constraint _UniqueKey unique (uuid, name) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -4966,7 +4966,7 @@ alter table PermissionGroup add constraint _UniqueKey unique (uuid, name) [90045
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:57 jdbc[2]: exception
+10-09 16:26:27 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table PolytomousKey add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -5023,7 +5023,7 @@ alter table PolytomousKey add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:57 jdbc[2]: exception
+10-09 16:26:27 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table PolytomousKeyNode add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -5080,7 +5080,7 @@ alter table PolytomousKeyNode add constraint _UniqueKey unique (uuid) [90045-170
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:57 jdbc[2]: exception
+10-09 16:26:27 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table Primer add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -5137,7 +5137,7 @@ alter table Primer add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:57 jdbc[2]: exception
+10-09 16:26:27 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table Reference add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -5194,7 +5194,7 @@ alter table Reference add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:57 jdbc[2]: exception
+10-09 16:26:27 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table Representation add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -5251,7 +5251,7 @@ alter table Representation add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:57 jdbc[2]: exception
+10-09 16:26:27 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table RightsInfo add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -5308,7 +5308,7 @@ alter table RightsInfo add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:57 jdbc[2]: exception
+10-09 16:26:27 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table Sequence add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -5365,7 +5365,7 @@ alter table Sequence add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:57 jdbc[2]: exception
+10-09 16:26:27 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table SingleRead add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -5422,7 +5422,7 @@ alter table SingleRead add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:57 jdbc[2]: exception
+10-09 16:26:27 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table SpecimenOrObservationBase add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -5479,7 +5479,7 @@ alter table SpecimenOrObservationBase add constraint _UniqueKey unique (uuid) [9
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:57 jdbc[2]: exception
+10-09 16:26:27 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table StateData add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -5536,7 +5536,7 @@ alter table StateData add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:57 jdbc[2]: exception
+10-09 16:26:27 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table StatisticalMeasurementValue add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -5593,7 +5593,7 @@ alter table StatisticalMeasurementValue add constraint _UniqueKey unique (uuid)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:57 jdbc[2]: exception
+10-09 16:26:27 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table SynonymRelationship add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -5650,7 +5650,7 @@ alter table SynonymRelationship add constraint _UniqueKey unique (uuid) [90045-1
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:57 jdbc[2]: exception
+10-09 16:26:27 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table TaxonBase add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -5707,7 +5707,7 @@ alter table TaxonBase add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:57 jdbc[2]: exception
+10-09 16:26:27 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table TaxonNameBase add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -5764,7 +5764,7 @@ alter table TaxonNameBase add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:57 jdbc[2]: exception
+10-09 16:26:27 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table TaxonNode add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -5821,7 +5821,7 @@ alter table TaxonNode add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:57 jdbc[2]: exception
+10-09 16:26:27 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table TaxonRelationship add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -5878,7 +5878,7 @@ alter table TaxonRelationship add constraint _UniqueKey unique (uuid) [90045-170
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:57 jdbc[2]: exception
+10-09 16:26:27 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table TermVocabulary add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -5935,7 +5935,7 @@ alter table TermVocabulary add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:57 jdbc[2]: exception
+10-09 16:26:27 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table TypeDesignationBase add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -5992,7 +5992,7 @@ alter table TypeDesignationBase add constraint _UniqueKey unique (uuid) [90045-1
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:57 jdbc[2]: exception
+10-09 16:26:27 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table UserAccount add constraint _UniqueKey unique (uuid, username) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -6049,7 +6049,7 @@ alter table UserAccount add constraint _UniqueKey unique (uuid, username) [90045
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:14:57 jdbc[2]: exception
+10-09 16:26:27 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table WorkingSet add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -6106,13 +6106,3 @@ alter table WorkingSet add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:154)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:102)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-10-09 16:32:03 database: close
-java.lang.ArrayIndexOutOfBoundsException: 2048
-       at org.h2.store.Data.writeValue(Data.java:415)
-       at org.h2.index.PageDataLeaf.writeData(PageDataLeaf.java:528)
-       at org.h2.index.PageDataLeaf.moveTo(PageDataLeaf.java:568)
-       at org.h2.store.PageStore.compact(PageStore.java:724)
-       at org.h2.store.PageStore.compact(PageStore.java:538)
-       at org.h2.engine.Database.closeOpenFilesAndUnlock(Database.java:1316)
-       at org.h2.engine.Database.close(Database.java:1266)
-       at org.h2.engine.DatabaseCloser.run(DatabaseCloser.java:63)
index 7f99896fa268b8cce3b1ec3c70ad795dca2fecfc..3e1d159bc1c0f834936d94f0abf7246b7070cb1c 100644 (file)
@@ -30,7 +30,7 @@ unitils.configuration.localFileName=unitils-cdmlib-local.properties
 # H2 #\r
 #\r
 database.driverClassName=org.h2.Driver\r
-database.url=jdbc:h2:file:./h2/cdmTest;AUTO_SERVER=TRUE\r
+database.url=jdbc:h2:file:./target/test-classes/h2/cdmTest;AUTO_SERVER=TRUE\r
 database.dialect=h2\r
 database.userName=sa\r
 database.password=\r