eu.etaxonomy.taxeditor.cdmlib/.classpath,MANIFEST.MF : removed cdm-server jar from...
authorCherian Mathew <c.mathew@bgbm.org>
Tue, 16 Jun 2015 08:18:03 +0000 (10:18 +0200)
committerCherian Mathew <c.mathew@bgbm.org>
Tue, 16 Jun 2015 08:18:03 +0000 (10:18 +0200)
OperationTestBase, TaxonNameEditorTest,  : refactoring
MockConversationEnabled : class to mock interface IConversationEnabled
TaxonNavigatorTest (.xml) : added test + data
cdmTest.*.db : latest test db

eu.etaxonomy.taxeditor.cdmlib/.classpath
eu.etaxonomy.taxeditor.cdmlib/META-INF/MANIFEST.MF
eu.etaxonomy.taxeditor.navigation/META-INF/MANIFEST.MF
eu.etaxonomy.taxeditor.test/src/test/java/eu/etaxonomy/cdm/model/TaxonNameEditorTest.java
eu.etaxonomy.taxeditor.test/src/test/java/eu/etaxonomy/cdm/model/TaxonNavigatorTest.java
eu.etaxonomy.taxeditor.test/src/test/java/eu/etaxonomy/taxeditor/operations/BaseOperationTest.java [moved from eu.etaxonomy.taxeditor.test/src/test/java/eu/etaxonomy/taxeditor/operations/OperationTestBase.java with 81% similarity]
eu.etaxonomy.taxeditor.test/src/test/java/eu/etaxonomy/taxeditor/test/MockConversationEnabled.java [new file with mode: 0644]
eu.etaxonomy.taxeditor.test/src/test/resources/.gitignore [new file with mode: 0644]
eu.etaxonomy.taxeditor.test/src/test/resources/eu/etaxonomy/cdm/model/TaxonNavigatorTest.xml
eu.etaxonomy.taxeditor.test/src/test/resources/h2/cdmTest.h2.db
eu.etaxonomy.taxeditor.test/src/test/resources/h2/cdmTest.trace.db

index 3806967ab95361ae0037b7584d99cafb068c788b..608defb1e1d40c50a36ec52ff7901d5f836fd4b7 100644 (file)
        <classpathentry exported="true" kind="lib" path="lib/xmlbeans-2.3.0.jar"/>
        <classpathentry exported="true" kind="lib" path="lib/poi-ooxml-schemas-3.10-FINAL.jar"/>
        <classpathentry exported="true" kind="lib" path="lib/swagger-annotations-1.3.5.jar"/>
-       <classpathentry exported="true" kind="lib" path="lib/cdm-server-3.5.2-SNAPSHOT.jar"/>
        <classpathentry kind="output" path="target/classes"/>
 </classpath>
index 2580e87af2c482bc271f46a8f10d68920ceaef46..9f9e05f42cfc4d847dc561f71e077f908393e621 100644 (file)
@@ -670,6 +670,5 @@ Bundle-ClassPath: .,
  lib/poi-ooxml-3.10-FINAL.jar,
  lib/xmlbeans-2.3.0.jar,
  lib/poi-ooxml-schemas-3.10-FINAL.jar,
- lib/swagger-annotations-1.3.5.jar,
- lib/cdm-server-3.5.2-SNAPSHOT.jar
+ lib/swagger-annotations-1.3.5.jar
 Import-Package: org.apache.commons.httpclient.methods
index 9831757ec8e9b0dc867bb15f7fa3998c9a2ef8ff..7a8a6b4060aed42d5dffad35c4ee09f09ff91d52 100644 (file)
@@ -9,6 +9,7 @@ Export-Package: eu.etaxonomy.cdm,
  eu.etaxonomy.taxeditor.navigation.internal,
  eu.etaxonomy.taxeditor.navigation.key.polytomous,
  eu.etaxonomy.taxeditor.navigation.navigator,
+ eu.etaxonomy.taxeditor.navigation.navigator.operation,
  eu.etaxonomy.taxeditor.navigation.search
 Require-Bundle: org.eclipse.ui,
  org.eclipse.ui.navigator,
index 7ea1567e90856a0096eba3a579eb4d7ba52c2281..82b77db1c047518985bb8c4af8b589ff028f5d1d 100644 (file)
@@ -34,7 +34,7 @@ import eu.etaxonomy.cdm.model.taxon.Synonym;
 import eu.etaxonomy.cdm.model.taxon.Taxon;
 import eu.etaxonomy.cdm.model.taxon.TaxonNode;
 import eu.etaxonomy.taxeditor.editor.name.operation.CreateSynonymInExistingHomotypicalGroupOperation;
-import eu.etaxonomy.taxeditor.operations.OperationTestBase;
+import eu.etaxonomy.taxeditor.operations.BaseOperationTest;
 import eu.etaxonomy.taxeditor.session.MockSessionOwner;
 
 /**
@@ -43,7 +43,7 @@ import eu.etaxonomy.taxeditor.session.MockSessionOwner;
  *
  */
 @DataSet
-public class TaxonNameEditorTest extends OperationTestBase {
+public class TaxonNameEditorTest extends BaseOperationTest {
 
     private static final Logger logger = Logger.getLogger(TaxonNameEditorTest.class);
 
index d54e6fb0972413c161a690375b086fb116eb3550..275223c3a7c41739eb8af90d9756b59bb5df6c51 100644 (file)
@@ -1,29 +1,37 @@
 // $Id$
 /**
-* Copyright (C) 2015 EDIT
-* European Distributed Institute of Taxonomy
-* http://www.e-taxonomy.eu
-*
-* The contents of this file are subject to the Mozilla Public License Version 1.1
-* See LICENSE.TXT at the top of this package for the full license terms.
-*/
+ * Copyright (C) 2015 EDIT
+ * European Distributed Institute of Taxonomy
+ * http://www.e-taxonomy.eu
+ *
+ * The contents of this file are subject to the Mozilla Public License Version 1.1
+ * See LICENSE.TXT at the top of this package for the full license terms.
+ */
 package eu.etaxonomy.cdm.model;
 
+import java.util.UUID;
+
 import org.apache.log4j.Logger;
+import org.eclipse.core.commands.ExecutionException;
+import org.junit.Assert;
 import org.junit.Test;
+import org.unitils.dbunit.annotation.DataSet;
 
 import eu.etaxonomy.cdm.api.service.IClassificationService;
 import eu.etaxonomy.cdm.api.service.ITaxonNodeService;
 import eu.etaxonomy.cdm.api.service.ITaxonService;
 import eu.etaxonomy.cdm.model.common.Language;
-import eu.etaxonomy.taxeditor.httpinvoker.RemotingSessionAwareTest;
+import eu.etaxonomy.cdm.model.taxon.TaxonNode;
+import eu.etaxonomy.taxeditor.navigation.navigator.operation.ChangeAcceptedTaxonToSynonymOperation;
+import eu.etaxonomy.taxeditor.operations.BaseOperationTest;
 
 /**
  * @author cmathew
  * @date 9 Mar 2015
  *
  */
-public class TaxonNavigatorTest extends RemotingSessionAwareTest {
+@DataSet
+public class TaxonNavigatorTest extends BaseOperationTest {
 
     private static final Logger logger = Logger.getLogger(TaxonNameEditorTest.class);
 
@@ -34,19 +42,26 @@ public class TaxonNavigatorTest extends RemotingSessionAwareTest {
     Language english = Language.getLanguageFromUuid(Language.uuidEnglish);
 
 
-
     @Test
-    public void addNewTaxonTest() {
-
-    }
+    public void changeAcceptedTaxonToSynonymTest() throws ExecutionException {
+        UUID oldTaxonNodeNodeUuid = UUID.fromString("168a4d09-a2b0-4206-b4cc-5d13199f9306");
+        UUID newAcceptedTaxonNodeUuid = UUID.fromString("f5d97f8b-c673-4050-af06-bbfab33baaec");
+
+        TaxonNode oldTaxonNode = taxonNodeService.load(oldTaxonNodeNodeUuid);
+        TaxonNode newAcceptedTaxonNode = taxonNodeService.load(newAcceptedTaxonNodeUuid);
+
+        Assert.assertEquals(0,newAcceptedTaxonNode.getTaxon().getSynonyms().size());
+        operation =  new ChangeAcceptedTaxonToSynonymOperation("changeAcceptedTaxonToSynonymTest",
+                undoContext,
+                oldTaxonNode,
+                newAcceptedTaxonNode,
+                postOperation,
+                conversationEnabled,
+                sessionOwner);
+        operation.execute(monitor, info);
+        newAcceptedTaxonNode = taxonNodeService.load(newAcceptedTaxonNodeUuid);
+        Assert.assertEquals(1,newAcceptedTaxonNode.getTaxon().getSynonyms().size());
 
-    @Test
-    public void addNewClassificationTest() {
-
-    }
-
-    @Test
-    public void changeAcceptedTaxonToSynonymTest() {
 
     }
 
similarity index 81%
rename from eu.etaxonomy.taxeditor.test/src/test/java/eu/etaxonomy/taxeditor/operations/OperationTestBase.java
rename to eu.etaxonomy.taxeditor.test/src/test/java/eu/etaxonomy/taxeditor/operations/BaseOperationTest.java
index 2d0b40e8f10217109e15822a834a94b14f3c8ee1..fdd429c1867072f47652e8050852ff6dd3d03983 100644 (file)
@@ -15,25 +15,30 @@ import org.eclipse.core.runtime.IAdaptable;
 import org.eclipse.core.runtime.IProgressMonitor;
 import org.eclipse.core.runtime.NullProgressMonitor;
 
+import eu.etaxonomy.cdm.api.conversation.IConversationEnabled;
 import eu.etaxonomy.taxeditor.httpinvoker.RemotingSessionAwareTest;
 import eu.etaxonomy.taxeditor.operation.AbstractPostOperation;
 import eu.etaxonomy.taxeditor.operation.IPostOperationEnabled;
 import eu.etaxonomy.taxeditor.session.ICdmEntitySessionEnabled;
+import eu.etaxonomy.taxeditor.test.MockConversationEnabled;
 
 /**
  * @author n.hoffmann
  * @created 15.04.2009
  * @version 1.0
  */
-public abstract class OperationTestBase extends RemotingSessionAwareTest {
+public abstract class BaseOperationTest extends RemotingSessionAwareTest {
 
        public static final IUndoContext undoContext = null;
 
        public static final IProgressMonitor monitor = new NullProgressMonitor();
        public static final IAdaptable info = null;
        public static final IPostOperationEnabled postOperation = null;
+       public static final IConversationEnabled conversationEnabled = new MockConversationEnabled();
        public static final ICdmEntitySessionEnabled cdmEntitySessionEnabled = null;
 
        protected static AbstractPostOperation operation;
 
+
+
 }
diff --git a/eu.etaxonomy.taxeditor.test/src/test/java/eu/etaxonomy/taxeditor/test/MockConversationEnabled.java b/eu.etaxonomy.taxeditor.test/src/test/java/eu/etaxonomy/taxeditor/test/MockConversationEnabled.java
new file mode 100644 (file)
index 0000000..089a3e0
--- /dev/null
@@ -0,0 +1,41 @@
+// $Id$
+/**
+* Copyright (C) 2015 EDIT
+* European Distributed Institute of Taxonomy
+* http://www.e-taxonomy.eu
+*
+* The contents of this file are subject to the Mozilla Public License Version 1.1
+* See LICENSE.TXT at the top of this package for the full license terms.
+*/
+package eu.etaxonomy.taxeditor.test;
+
+import eu.etaxonomy.cdm.api.conversation.ConversationHolder;
+import eu.etaxonomy.cdm.api.conversation.ConversationHolderMock;
+import eu.etaxonomy.cdm.api.conversation.IConversationEnabled;
+import eu.etaxonomy.cdm.persistence.hibernate.CdmDataChangeMap;
+
+/**
+ * @author cmathew
+ * @date 15 Jun 2015
+ *
+ */
+public class MockConversationEnabled implements IConversationEnabled {
+
+    /* (non-Javadoc)
+     * @see eu.etaxonomy.cdm.persistence.hibernate.ICdmPostDataChangeObserver#update(eu.etaxonomy.cdm.persistence.hibernate.CdmDataChangeMap)
+     */
+    @Override
+    public void update(CdmDataChangeMap arg0) {
+        // TODO Auto-generated method stub
+
+    }
+
+    /* (non-Javadoc)
+     * @see eu.etaxonomy.cdm.api.conversation.IConversationEnabled#getConversationHolder()
+     */
+    @Override
+    public ConversationHolder getConversationHolder() {
+        return new ConversationHolderMock();
+    }
+
+}
diff --git a/eu.etaxonomy.taxeditor.test/src/test/resources/.gitignore b/eu.etaxonomy.taxeditor.test/src/test/resources/.gitignore
new file mode 100644 (file)
index 0000000..411bc46
--- /dev/null
@@ -0,0 +1 @@
+server.properties
index 32f7003d37c65acfd883e1b467e18af4d3099df2..693f9e0b9397a02339c53c961d6f1a9a6b441169 100644 (file)
@@ -1,46 +1,66 @@
 <?xml version="1.0" encoding="UTF-8"?><!--
-  generated by Jailer 4.3, Mon Mar 09 12:52:22 CET 2015 from cmathew@cmbgbm-t530
+  generated by Jailer 4.3, Mon Jun 15 17:20:26 CEST 2015 from cmathew@cmbgbm-t530
   
-  Extraction Model:  all rows from Classification (extractionmodel/by-example/SbE-Classification-12-51-51-866.csv)
+  Extraction Model:  all rows from Classification (extractionmodel/by-example/SbE-Classification-17-20-15-292.csv)
   Database URL:      jdbc:mysql://127.0.0.1:3306/local-cyprus
   Database User:     root
   
-  Exported Rows:     26
+  Exported Rows:     47
       Classification                 1
-      TaxonBase                      6
-      TaxonNameBase                  6
-      TaxonNode                      13
+      DescriptionBase                22
+      TaxonBase                      7
+      TaxonNode                      16
+      UserAccount                    1
   
 --><dataset>
-  <TaxonNode id="13" created="2010-12-21 15:09:43.0" uuid="0ac32f24-6d55-44ae-8519-c86c83faa938" countchildren="122" createdby_id="11" classification_id="10" parent_id="4032" taxon_id="11" treeIndex="#t10#4032#13#" sortIndex="0"/>
-  <TaxonNode id="49" created="2010-12-21 15:09:43.0" uuid="572290a9-7535-48c8-9f68-25ddbc9869ee" countchildren="10" createdby_id="11" classification_id="10" parent_id="4032" taxon_id="49" treeIndex="#t10#4032#49#" sortIndex="1"/>
-  <TaxonNode id="344" created="2010-12-21 15:09:45.0" uuid="894bc754-235b-4fa1-aa0c-a2b62e3f684c" countchildren="0" createdby_id="11" classification_id="10" parent_id="345" taxon_id="384" treeIndex="#t10#4032#49#346#345#344#" sortIndex="0"/>
-  <TaxonNode id="345" created="2010-12-21 15:09:45.0" uuid="8667c9d7-18e4-4711-a2be-9d468635744d" countchildren="5" createdby_id="11" classification_id="10" parent_id="346" taxon_id="386" treeIndex="#t10#4032#49#346#345#" sortIndex="0"/>
-  <TaxonNode id="346" created="2010-12-21 15:09:45.0" uuid="ffc9b1ec-278e-4298-8bc2-d36bdb2c33b8" countchildren="1" createdby_id="11" classification_id="10" parent_id="49" taxon_id="385" treeIndex="#t10#4032#49#346#" sortIndex="1"/>
-  <TaxonNode id="347" created="2010-12-21 15:09:45.0" uuid="d425a971-1abe-4895-9e1f-1e5c8ff1c84c" countchildren="0" createdby_id="11" classification_id="10" parent_id="345" taxon_id="387" treeIndex="#t10#4032#49#346#345#347#" sortIndex="1"/>
-  <TaxonNode id="348" created="2010-12-21 15:09:46.0" uuid="3bb05d37-51fa-48f6-9f49-0162f2893dd5" countchildren="0" createdby_id="11" classification_id="10" parent_id="345" taxon_id="391" treeIndex="#t10#4032#49#346#345#348#" sortIndex="2"/>
-  <TaxonNode id="350" created="2010-12-21 15:09:46.0" uuid="3f47c04f-4a84-4f53-95ce-840309900db7" countchildren="1" createdby_id="11" classification_id="10" parent_id="345" taxon_id="393" treeIndex="#t10#4032#49#346#345#350#" sortIndex="3"/>
-  <TaxonNode id="351" created="2010-12-21 15:09:46.0" uuid="ce54c396-3694-47f2-abb0-1d7b7e057985" countchildren="0" createdby_id="11" classification_id="10" parent_id="345" taxon_id="394" treeIndex="#t10#4032#49#346#345#351#" sortIndex="4"/>
-  <TaxonNode id="942" created="2010-12-21 15:09:50.0" uuid="713baf41-c76b-4ba6-be82-ffabb7f895c5" countchildren="0" createdby_id="11" classification_id="10" parent_id="943" taxon_id="1070" treeIndex="#t10#4032#49#3880#943#942#" sortIndex="0"/>
-  <TaxonNode id="943" created="2010-12-21 15:09:50.0" uuid="47336df4-af4b-4b40-84de-34fc445d762c" countchildren="1" createdby_id="11" classification_id="10" parent_id="3880" taxon_id="1072" treeIndex="#t10#4032#49#3880#943#" sortIndex="0"/>
-  <TaxonNode id="3880" created="2012-07-19 21:43:16.0" uuid="05102134-ce13-4a0e-be2e-48aa08ecbea5" countchildren="1" createdby_id="30" classification_id="10" parent_id="49" taxon_id="6110" treeIndex="#t10#4032#49#3880#" sortIndex="9"/>
-  <TaxonNode id="4032" created="2014-01-16 10:24:29.0" uuid="29b3fd3f-29b4-4011-ab12-9c1ad1607dbd" countchildren="2" classification_id="10" treeIndex="#t10#4032#"/>
+  <TaxonNode id="46" created="2010-12-21 15:09:43.0" uuid="168a4d09-a2b0-4206-b4cc-5d13199f9306" countchildren="0" sortindex="0" treeindex="#t10#4032#49#48#47#46#"   classification_id="10" parent_id="47" taxon_id="48"/>
+  <TaxonNode id="47" created="2010-12-21 15:09:43.0" uuid="2f05d429-632d-4230-b9cb-70299360b470" countchildren="1" sortindex="0" treeindex="#t10#4032#49#48#47#"   classification_id="10" parent_id="48" taxon_id="51"/>
+  <TaxonNode id="48" created="2010-12-21 15:09:43.0" uuid="24773d3b-8f11-4400-99de-71658982b245" countchildren="6" sortindex="0" treeindex="#t10#4032#49#48#"   classification_id="10" parent_id="49" taxon_id="50"/>
+  <TaxonNode id="49" created="2010-12-21 15:09:43.0" uuid="572290a9-7535-48c8-9f68-25ddbc9869ee" countchildren="10" sortindex="1" treeindex="#t10#4032#49#"   classification_id="10" parent_id="4032" taxon_id="49"/>
+  <TaxonNode id="236" created="2010-12-21 15:09:45.0" uuid="f5d97f8b-c673-4050-af06-bbfab33baaec" countchildren="0" sortindex="0" treeindex="#t10#4032#49#48#237#236#"   classification_id="10" parent_id="237" taxon_id="264"/>
+  <TaxonNode id="237" created="2010-12-21 15:09:45.0" uuid="4998de90-d0be-433b-a62f-0d57a1e399b0" countchildren="1" sortindex="1" treeindex="#t10#4032#49#48#237#"   classification_id="10" parent_id="48" taxon_id="265"/>
+  <TaxonNode id="714" created="2010-12-21 15:09:48.0" uuid="b85b5b78-6760-409f-ac91-bb89e95ff2a1" countchildren="0" sortindex="0" treeindex="#t10#4032#49#48#715#714#"   classification_id="10" parent_id="715" taxon_id="812"/>
+  <TaxonNode id="715" created="2010-12-21 15:09:48.0" uuid="91698cec-615f-4472-9002-feda1a6acded" countchildren="2" sortindex="2" treeindex="#t10#4032#49#48#715#"   classification_id="10" parent_id="48" taxon_id="814"/>
+  <TaxonNode id="716" created="2010-12-21 15:09:48.0" uuid="6ad8e9e2-f5f6-41ad-aa30-f62a903650db" countchildren="0" sortindex="1" treeindex="#t10#4032#49#48#715#716#"   classification_id="10" parent_id="715" taxon_id="815"/>
+  <TaxonNode id="828" created="2010-12-21 15:09:49.0" uuid="786622ba-cb2c-47f4-9eeb-65a6ebb7122b" countchildren="0" sortindex="0" treeindex="#t10#4032#49#48#829#828#"   classification_id="10" parent_id="829" taxon_id="946"/>
+  <TaxonNode id="829" created="2010-12-21 15:09:49.0" uuid="4fe03763-b966-4361-8334-352f6f777588" countchildren="1" sortindex="3" treeindex="#t10#4032#49#48#829#"   classification_id="10" parent_id="48" taxon_id="948"/>
+  <TaxonNode id="1915" created="2010-12-21 15:09:57.0" uuid="99f03b56-67cd-4e01-9ceb-2362d48f9d07" countchildren="0" sortindex="0" treeindex="#t10#4032#49#48#1916#1915#"   classification_id="10" parent_id="1916" taxon_id="2203"/>
+  <TaxonNode id="1916" created="2010-12-21 15:09:57.0" uuid="d8998200-500f-4312-90f4-2b60e6fd3a78" countchildren="1" sortindex="4" treeindex="#t10#4032#49#48#1916#"   classification_id="10" parent_id="48" taxon_id="2205"/>
+  <TaxonNode id="2354" created="2010-12-21 15:10:00.0" uuid="b8439f51-6b96-445a-b401-7a836ba1cf58" countchildren="0" sortindex="0" treeindex="#t10#4032#49#48#2355#2354#"   classification_id="10" parent_id="2355" taxon_id="2737"/>
+  <TaxonNode id="2355" created="2010-12-21 15:10:00.0" uuid="6da4e5b6-ebc3-4c46-bdce-24161b7bd0e2" countchildren="1" sortindex="5" treeindex="#t10#4032#49#48#2355#"   classification_id="10" parent_id="48" taxon_id="2738"/>
+  <TaxonNode id="4032" created="2014-01-16 10:24:29.0" uuid="29b3fd3f-29b4-4011-ab12-9c1ad1607dbd" countchildren="2" treeindex="#t10#4032#" classification_id="10"/>
 
-  <TaxonNameBase DTYPE="BotanicalName" id="384" created="2010-12-21 15:09:45.0" uuid="0a89c1d4-b8b9-4bbe-8e25-03cef7179b6d" protectedtitlecache="false" titleCache="Asplenium adiantum-nigrum L." fullTitleCache="Asplenium adiantum-nigrum L." parsingproblem="0" problemends="-1" problemstarts="-1" protectedfulltitlecache="false" authorshipcache="L." binomhybrid="false" genusoruninomial="Asplenium" hybridformula="false" monomhybrid="false" namecache="Asplenium adiantum-nigrum" protectedauthorshipcache="false" protectednamecache="false" specificepithet="adiantum-nigrum" trinomhybrid="false" anamorphic="false" createdby_id="11" homotypicalgroup_id="365" rank_id="778" combinationauthorteam_id="7220"/>
-  <TaxonNameBase DTYPE="BotanicalName" id="387" created="2010-12-21 15:09:45.0" uuid="d25985c7-6fb4-4b31-8a94-5d7c5ba6ad16" protectedtitlecache="false" titleCache="Asplenium ceterach L." fullTitleCache="Asplenium ceterach L." parsingproblem="0" problemends="-1" problemstarts="-1" protectedfulltitlecache="false" authorshipcache="L." binomhybrid="false" genusoruninomial="Asplenium" hybridformula="false" monomhybrid="false" namecache="Asplenium ceterach" protectedauthorshipcache="false" protectednamecache="false" specificepithet="ceterach" trinomhybrid="false" anamorphic="false" createdby_id="11" homotypicalgroup_id="368" rank_id="778" combinationauthorteam_id="674"/>
-  <TaxonNameBase DTYPE="BotanicalName" id="391" created="2010-12-21 15:09:46.0" uuid="bb33b929-77f4-47fd-ac6b-265e947871be" protectedtitlecache="false" titleCache="Asplenium onopteris L." fullTitleCache="Asplenium onopteris L." parsingproblem="0" problemends="-1" problemstarts="-1" protectedfulltitlecache="false" authorshipcache="L." binomhybrid="false" genusoruninomial="Asplenium" hybridformula="false" monomhybrid="false" namecache="Asplenium onopteris" protectedauthorshipcache="false" protectednamecache="false" specificepithet="onopteris" trinomhybrid="false" anamorphic="false" createdby_id="11" homotypicalgroup_id="372" rank_id="778" combinationauthorteam_id="678"/>
-  <TaxonNameBase DTYPE="BotanicalName" id="393" created="2010-12-21 15:09:46.0" uuid="d0d8df45-6d47-4dbf-8554-ea1aa1e00dc9" protectedtitlecache="false" titleCache="Asplenium trichomanes L." fullTitleCache="Asplenium trichomanes L." parsingproblem="0" problemends="-1" problemstarts="-1" protectedfulltitlecache="false" authorshipcache="L." binomhybrid="false" genusoruninomial="Asplenium" hybridformula="false" monomhybrid="false" namecache="Asplenium trichomanes" protectedauthorshipcache="false" protectednamecache="false" specificepithet="trichomanes" trinomhybrid="false" anamorphic="false" createdby_id="11" homotypicalgroup_id="374" rank_id="778" combinationauthorteam_id="7390"/>
-  <TaxonNameBase DTYPE="BotanicalName" id="394" created="2010-12-21 15:09:46.0" uuid="08f8f376-c9a4-4ea9-950d-3ac30b7fa689" protectedtitlecache="false" titleCache="Asplenium viride Huds." fullTitleCache="Asplenium viride Huds." parsingproblem="0" problemends="-1" problemstarts="-1" protectedfulltitlecache="false" authorshipcache="Huds." binomhybrid="false" genusoruninomial="Asplenium" hybridformula="false" monomhybrid="false" namecache="Asplenium viride" protectedauthorshipcache="false" protectednamecache="false" specificepithet="viride" trinomhybrid="false" anamorphic="false" createdby_id="11" homotypicalgroup_id="375" rank_id="778" combinationauthorteam_id="682"/>
-  <TaxonNameBase DTYPE="BotanicalName" id="1070" created="2010-12-21 15:09:50.0" uuid="d23fca33-18c6-4b5c-81d7-93359afd76e1" protectedtitlecache="false" titleCache="Cystopteris fragilis (L.) Bernh." fullTitleCache="Cystopteris fragilis (L.) Bernh." parsingproblem="0" problemends="-1" problemstarts="-1" protectedfulltitlecache="false" authorshipcache="(L.) Bernh." binomhybrid="false" genusoruninomial="Cystopteris" hybridformula="false" monomhybrid="false" namecache="Cystopteris fragilis" protectedauthorshipcache="false" protectednamecache="false" specificepithet="fragilis" trinomhybrid="false" anamorphic="false" createdby_id="11" homotypicalgroup_id="1004" rank_id="778" basionymauthorteam_id="2019" combinationauthorteam_id="2021"/>
+  <Classification id="10" created="2010-12-21 15:09:43.0" uuid="0c2b5d25-7b15-4401-8b51-dd4be0ee5cab" updated="2015-06-09 07:10:42.0" protectedtitlecache="false" titleCache="Cyprus"   updatedby_id="10" name_id="10" reference_id="1493" rootnode_id="4032"/>
 
-  <Classification id="10" created="2010-12-21 15:09:43.0" uuid="0c2b5d25-7b15-4401-8b51-dd4be0ee5cab" protectedtitlecache="false" titleCache="Cyprus" createdby_id="11" name_id="10" reference_id="10" rootnode_id="4032"/>
-
-  <TaxonBase DTYPE="Taxon" id="384" created="2011-03-01 20:11:27.0" uuid="b9f1429d-137c-4c23-a11f-7808b50bde4b" protectedtitlecache="false" titleCache="Asplenium adiantum-nigrum L. sec. Cyprus" doubtful="false" usenamecache="false" excluded="false" taxonstatusunknown="false" taxonomicchildrencount="0" unplaced="false" createdby_id="11" name_id="384" sec_id="10" publish="true"/>
-  <TaxonBase DTYPE="Taxon" id="387" created="2011-03-01 20:11:27.0" uuid="9763e5f0-6cd4-4d96-b8a4-4420854f7727" protectedtitlecache="false" titleCache="Asplenium ceterach L. sec. Cyprus" doubtful="false" usenamecache="false" excluded="false" taxonstatusunknown="false" taxonomicchildrencount="0" unplaced="false" createdby_id="11" name_id="387" sec_id="10" publish="true"/>
-  <TaxonBase DTYPE="Taxon" id="391" created="2011-03-01 20:11:27.0" uuid="42c42377-3847-4d85-811f-743ab3d3f0a3" protectedtitlecache="false" titleCache="Asplenium onopteris L. sec. Cyprus" doubtful="false" usenamecache="false" excluded="false" taxonstatusunknown="false" taxonomicchildrencount="0" unplaced="false" createdby_id="11" name_id="391" sec_id="10" publish="true"/>
-  <TaxonBase DTYPE="Taxon" id="393" created="2010-12-21 15:09:46.0" uuid="c1263710-0225-4429-b2b7-518e6db564c5" protectedtitlecache="false" titleCache="Asplenium trichomanes L. sec. Cyprus" doubtful="false" usenamecache="false" excluded="false" taxonstatusunknown="false" taxonomicchildrencount="0" unplaced="false" createdby_id="11" name_id="393" sec_id="10" publish="true"/>
-  <TaxonBase DTYPE="Taxon" id="394" created="2011-03-01 20:11:27.0" uuid="aff4fa6f-9aa8-463d-ac07-ec8a1925eb57" protectedtitlecache="false" titleCache="Asplenium viride Huds. sec. Cyprus" doubtful="false" usenamecache="false" excluded="false" taxonstatusunknown="false" taxonomicchildrencount="0" unplaced="false" createdby_id="11" name_id="394" sec_id="10" publish="true"/>
-  <TaxonBase DTYPE="Taxon" id="1070" created="2011-03-01 20:11:30.0" uuid="f380f8ff-2dab-4ea7-a3c9-4758f963eb6b" protectedtitlecache="false" titleCache="Cystopteris fragilis (L.) Bernh. sec. Cyprus" doubtful="false" usenamecache="false" excluded="false" taxonstatusunknown="false" taxonomicchildrencount="0" unplaced="false" createdby_id="11" name_id="1070" sec_id="10" publish="true"/>
+  <TaxonBase DTYPE="Taxon" id="48" created="2011-03-01 20:11:26.0" uuid="b8402dc4-5050-4882-a147-01b71e0e47d6" protectedtitlecache="false" titleCache="Adiantum capillus-veneris L. sec. Cyprus" doubtful="false" publish="true" usenamecache="false" excluded="false" taxonstatusunknown="false" taxonomicchildrencount="0" unplaced="false"   name_id="48" sec_id="10"/>
+  <TaxonBase DTYPE="Taxon" id="264" created="2011-03-01 20:11:27.0" uuid="d679c5d0-53b3-40fc-97e1-0646aad7ed23" protectedtitlecache="false" titleCache="Anogramma leptophylla (L.) Link sec. Cyprus" doubtful="false" publish="true" usenamecache="false" excluded="false" taxonstatusunknown="false" taxonomicchildrencount="0" unplaced="false"   name_id="264" sec_id="10"/>
+  <TaxonBase DTYPE="Taxon" id="812" created="2011-03-01 20:11:29.0" uuid="e40854d7-143f-4054-b229-6ed4cedb4bff" protectedtitlecache="false" titleCache="Cheilanthes acrostica (Balb.) Tod. sec. Cyprus" doubtful="false" publish="true" usenamecache="false" excluded="false" taxonstatusunknown="false" taxonomicchildrencount="0" unplaced="false"   name_id="812" sec_id="10"/>
+  <TaxonBase DTYPE="Taxon" id="815" created="2010-12-21 15:09:48.0" uuid="7ea2c74a-f2b2-41f6-acdf-1ca35f5d03f8" protectedtitlecache="false" titleCache="Cheilanthes maderensis Lowe sec. Cyprus" doubtful="false" publish="true" usenamecache="false" excluded="false" taxonstatusunknown="false" taxonomicchildrencount="0" unplaced="false"   name_id="815" sec_id="10"/>
+  <TaxonBase DTYPE="Taxon" id="946" created="2011-03-01 20:11:30.0" uuid="ba21b018-97d2-42d7-af6c-5e8db8e495ff" protectedtitlecache="false" titleCache="Cosentinia vellea (Aiton) Tod. sec. Cyprus" doubtful="false" publish="true" usenamecache="false" excluded="false" taxonstatusunknown="false" taxonomicchildrencount="0" unplaced="false"   name_id="946" sec_id="10"/>
+  <TaxonBase DTYPE="Taxon" id="2203" created="2011-03-01 20:11:36.0" uuid="d9a0c5d5-baee-4b6b-974a-a7de5affe748" protectedtitlecache="false" titleCache="Notholaena marantae (L.) Desv. sec. Cyprus" doubtful="false" publish="true" usenamecache="false" excluded="false" taxonstatusunknown="false" taxonomicchildrencount="0" unplaced="false"   name_id="2203" sec_id="10"/>
+  <TaxonBase DTYPE="Taxon" id="2737" created="2011-03-01 20:11:39.0" uuid="6b46ac55-3e39-4c37-a1b6-b680b21599b2" protectedtitlecache="false" titleCache="Pteris vittata L. sec. Cyprus" doubtful="false" publish="true" usenamecache="false" excluded="false" taxonstatusunknown="false" taxonomicchildrencount="0" unplaced="false"   name_id="2737" sec_id="10"/>
 
+  <DescriptionBase DTYPE="TaxonDescription" id="28" created="2010-12-21 15:09:43.0" uuid="f04f8f66-ad92-42d0-89bc-04ac5b36163c" updated="2011-03-01 19:20:45.0" protectedtitlecache="false" titleCache="Taxon description for Adiantum capillus-veneris L." imagegallery="false"   taxon_id="48"/>
+  <DescriptionBase DTYPE="TaxonDescription" id="149" created="2010-12-21 15:09:45.0" uuid="24df0fca-bfc4-4f0f-a269-336985ed6e5e" updated="2011-03-01 19:20:46.0" protectedtitlecache="false" titleCache="Taxon description for Anogramma leptophylla (L.) Link" imagegallery="false"   taxon_id="264"/>
+  <DescriptionBase DTYPE="TaxonDescription" id="447" created="2010-12-21 15:09:48.0" uuid="01863b86-c6ae-48b8-a8da-f693be9087da" updated="2011-03-01 19:20:48.0" protectedtitlecache="false" titleCache="Taxon description for Cheilanthes acrostica (Balbis) Tod." imagegallery="false"   taxon_id="812"/>
+  <DescriptionBase DTYPE="TaxonDescription" id="448" created="2010-12-21 15:09:48.0" uuid="aac7b184-e622-409b-8eda-e14998b9021d" protectedtitlecache="false" titleCache="Taxon description for Cheilanthes maderensis Lowe" imagegallery="false"   taxon_id="815"/>
+  <DescriptionBase DTYPE="TaxonDescription" id="521" created="2010-12-21 15:09:49.0" uuid="2d672585-0f35-42f8-9923-dfd5545e6369" updated="2011-03-01 19:20:48.0" protectedtitlecache="false" titleCache="Taxon description for Cosentinia vellea (Aiton) Tod." imagegallery="false"   taxon_id="946"/>
+  <DescriptionBase DTYPE="TaxonDescription" id="1234" created="2010-12-21 15:09:57.0" uuid="a8a734c2-122b-4d5b-9c89-a852f4ab4661" updated="2011-03-01 19:20:53.0" protectedtitlecache="false" titleCache="Taxon description for Notholaena marantae (L.) Desv." imagegallery="false"   taxon_id="2203"/>
+  <DescriptionBase DTYPE="TaxonDescription" id="1524" created="2010-12-21 15:10:00.0" uuid="c4e66d46-e4fb-4da2-a432-3f1cf5353b81" updated="2011-03-01 19:20:55.0" protectedtitlecache="false" titleCache="Taxon description for Pteris vittata L." imagegallery="false"   taxon_id="2737"/>
+  <DescriptionBase DTYPE="TaxonDescription" id="4567" created="2011-03-01 19:20:45.0" uuid="dd0f7395-6162-4ce4-8ece-774011b09325" updated="2011-03-01 20:11:26.0" protectedtitlecache="true" titleCache="Cyprus Distributions Excel Import for Adiantum capillus-veneris L. sec. Cyprus" imagegallery="false" taxon_id="48"/>
+  <DescriptionBase DTYPE="TaxonDescription" id="4627" created="2011-03-01 19:20:46.0" uuid="34266202-eb5d-41ec-a0b2-da56deb11cc7" updated="2011-03-01 20:11:27.0" protectedtitlecache="true" titleCache="Cyprus Distributions Excel Import for Anogramma leptophylla (L.) Link sec. Cyprus" imagegallery="false" taxon_id="264"/>
+  <DescriptionBase DTYPE="TaxonDescription" id="4798" created="2011-03-01 19:20:48.0" uuid="504b0178-39e6-4c79-8e33-ca00b0662f27" updated="2011-03-01 20:11:29.0" protectedtitlecache="true" titleCache="Cyprus Distributions Excel Import for Cheilanthes acrostica (Balbis) Tod. sec. Cyprus" imagegallery="false" taxon_id="812"/>
+  <DescriptionBase DTYPE="TaxonDescription" id="4840" created="2011-03-01 19:20:48.0" uuid="73396d11-5d35-43fb-8b15-4d472bdcdd43" updated="2011-03-01 20:11:30.0" protectedtitlecache="true" titleCache="Cyprus Distributions Excel Import for Cosentinia vellea (Aiton) Tod. sec. Cyprus" imagegallery="false" taxon_id="946"/>
+  <DescriptionBase DTYPE="TaxonDescription" id="5409" created="2011-03-01 19:20:55.0" uuid="64a797b2-7f92-4012-a4f5-d76f8aaeb6b4" updated="2011-03-01 20:11:39.0" protectedtitlecache="true" titleCache="Cyprus Distributions Excel Import for Pteris vittata L. sec. Cyprus" imagegallery="false" taxon_id="2737"/>
+  <DescriptionBase DTYPE="TaxonDescription" id="5974" created="2011-03-01 19:20:53.0" uuid="71872861-8229-4cab-8042-b75dfa0e3f63" updated="2011-03-01 20:11:36.0" protectedtitlecache="true" titleCache="Cyprus Distributions Excel Import for Notholaena marantae (L.) Desv. sec. Cyprus" imagegallery="false" taxon_id="2203"/>
+  <DescriptionBase DTYPE="TaxonDescription" id="11766" created="2012-07-30 15:39:44.0" uuid="6b4be8a2-ea86-4815-bd31-b022055a90f2" protectedtitlecache="false" titleCache="Image gallery for Pteris vittata L." imagegallery="true"   taxon_id="2737"/>
+  <DescriptionBase DTYPE="TaxonDescription" id="12353" created="2012-12-03 12:21:48.0" uuid="b8d3a151-032e-48d9-9191-d7b8fb1fe1a0" protectedtitlecache="false" titleCache="Image gallery for Cheilanthes acrostica (Balbis) Tod." imagegallery="true"   taxon_id="812"/>
+  <DescriptionBase DTYPE="TaxonDescription" id="12713" created="2013-02-10 21:43:33.0" uuid="61fbdc1b-80bf-4aea-b6cb-8f4d466bd923" protectedtitlecache="false" titleCache="Image gallery for Adiantum capillus-veneris L." imagegallery="true"   taxon_id="48"/>
+  <DescriptionBase DTYPE="TaxonDescription" id="13728" created="2014-02-28 19:20:29.0" uuid="53b3125e-2a43-4433-a4dd-50dd9a4cf92c" updated="2014-02-28 19:20:29.0" protectedtitlecache="true" titleCache="Import from Cyprus Excel Altitude Import" imagegallery="false" taxon_id="48"/>
+  <DescriptionBase DTYPE="TaxonDescription" id="13817" created="2014-02-28 19:20:34.0" uuid="7b108193-e689-417a-bcab-adaf6c49d532" updated="2014-02-28 19:20:34.0" protectedtitlecache="true" titleCache="Import from Cyprus Excel Altitude Import" imagegallery="false" taxon_id="264"/>
+  <DescriptionBase DTYPE="TaxonDescription" id="14043" created="2014-02-28 19:20:58.0" uuid="de29cc97-a160-4783-b996-b929157335d5" updated="2014-02-28 19:20:58.0" protectedtitlecache="true" titleCache="Import from Cyprus Excel Altitude Import" imagegallery="false" taxon_id="812"/>
+  <DescriptionBase DTYPE="TaxonDescription" id="14101" created="2014-02-28 19:21:07.0" uuid="815336d3-19d6-493d-9ea4-bcb320d1b922" updated="2014-02-28 19:21:08.0" protectedtitlecache="true" titleCache="Import from Cyprus Excel Altitude Import" imagegallery="false" taxon_id="946"/>
+  <DescriptionBase DTYPE="TaxonDescription" id="14658" created="2014-02-28 19:23:51.0" uuid="ce4068f8-17b0-46e2-9fbb-e8c16efb7255" updated="2014-02-28 19:23:51.0" protectedtitlecache="true" titleCache="Import from Cyprus Excel Altitude Import" imagegallery="false" taxon_id="2203"/>
+  <DescriptionBase DTYPE="TaxonDescription" id="14864" created="2014-02-28 19:25:21.0" uuid="2d55f445-8e72-43d3-976a-133828e89599" updated="2014-02-28 19:25:21.0" protectedtitlecache="true" titleCache="Import from Cyprus Excel Altitude Import" imagegallery="false" taxon_id="2737"/>
   
 </dataset>
index 638ef7abf3c59060e8dfe7b3c1b61a8f63b42d72..98a3b7767eef5bc4e56cbcde2514bd533fbccbed 100644 (file)
Binary files a/eu.etaxonomy.taxeditor.test/src/test/resources/h2/cdmTest.h2.db and b/eu.etaxonomy.taxeditor.test/src/test/resources/h2/cdmTest.h2.db differ
index a5338e269cc6b13d29c4c00e8bd2ff1221a1638f..934783e167210eeea1abe6590d349abfc9e13377 100644 (file)
-06-08 17:35:53 jdbc[4]: exception
-org.h2.jdbc.JdbcSQLException: Table "CDMMETADATA" not found; SQL statement:
-SELECT value FROM CdmMetaData WHERE propertyname=0 [42102-170]
-06-08 17:35:55 jdbc[7]: exception
-org.h2.jdbc.JdbcSQLException: Table "CDMMETADATA" not found; SQL statement:
-SELECT value FROM CdmMetaData WHERE propertyname=0 [42102-170]
-06-08 17:36:22 jdbc[8]: java.lang.Exception: Open Stack Trace
+06-15 17:37:28 jdbc[2]: java.lang.Exception: Open Stack Trace
+       at org.h2.util.CloseWatcher.register(CloseWatcher.java:99)
+       at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:121)
+       at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:93)
+       at org.h2.Driver.connect(Driver.java:72)
+       at java.sql.DriverManager.getConnection(DriverManager.java:571)
+       at java.sql.DriverManager.getConnection(DriverManager.java:215)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.getConnection(CdmDataSourceBase.java:67)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.getConnection(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.getConnection(CdmDataSourceBase.java:45)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.getConnection(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.executeQuery(CdmDataSourceBase.java:182)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.executeQuery(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.getSingleValue(CdmDataSourceBase.java:136)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.getSingleValue(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.getMetaDataMap(CdmDataSourceBase.java:288)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.getMetaDataMap(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.taxeditor.view.datasource.CdmMetaDataAwareDataSourceContainer.getMetaDataFromDataSource(CdmMetaDataAwareDataSourceContainer.java:84)
+       at eu.etaxonomy.taxeditor.view.datasource.CdmDataSourceViewPart$DataSourceJob.run(CdmDataSourceViewPart.java:140)
+       at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
+
+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)
+       at org.h2.message.DbException.get(DbException.java:135)
+       at org.h2.jdbc.JdbcConnection.closeOld(JdbcConnection.java:175)
+       at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:120)
+       at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:93)
+       at org.h2.Driver.connect(Driver.java:72)
+       at java.sql.DriverManager.getConnection(DriverManager.java:571)
+       at java.sql.DriverManager.getConnection(DriverManager.java:215)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.testConnection(CdmDataSourceBase.java:93)
+       at eu.etaxonomy.cdm.database.CdmDataSource.testConnection(CdmDataSource.java:33)
+       at eu.etaxonomy.taxeditor.datasource.wizard.CdmDataSourceCredentialsWizardPage.testDbConfiguration(CdmDataSourceCredentialsWizardPage.java:292)
+       at eu.etaxonomy.taxeditor.datasource.wizard.CdmDataSourceCredentialsWizardPage.testDbConfiguration(CdmDataSourceCredentialsWizardPage.java:281)
+       at eu.etaxonomy.taxeditor.datasource.wizard.CdmDataSourceCredentialsWizardPage$1.widgetSelected(CdmDataSourceCredentialsWizardPage.java:165)
+       at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:240)
+       at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
+       at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1258)
+       at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3588)
+       at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3209)
+       at org.eclipse.jface.window.Window.runEventLoop(Window.java:825)
+       at org.eclipse.jface.window.Window.open(Window.java:801)
+       at eu.etaxonomy.taxeditor.view.datasource.handler.CreateDataSourceHandler.specificExecute(CreateDataSourceHandler.java:41)
+       at eu.etaxonomy.taxeditor.view.datasource.handler.AbstractDataSourceHandler.execute(AbstractDataSourceHandler.java:37)
+       at eu.etaxonomy.taxeditor.view.datasource.handler.CreateDataSourceHandler.execute(CreateDataSourceHandler.java:1)
+       at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.java:293)
+       at org.eclipse.core.commands.Command.executeWithChecks(Command.java:476)
+       at org.eclipse.core.commands.ParameterizedCommand.executeWithChecks(ParameterizedCommand.java:508)
+       at org.eclipse.ui.internal.handlers.HandlerService.executeCommand(HandlerService.java:169)
+       at org.eclipse.ui.internal.handlers.SlaveHandlerService.executeCommand(SlaveHandlerService.java:241)
+       at org.eclipse.ui.internal.handlers.SlaveHandlerService.executeCommand(SlaveHandlerService.java:241)
+       at org.eclipse.ui.menus.CommandContributionItem.handleWidgetSelection(CommandContributionItem.java:829)
+       at org.eclipse.ui.menus.CommandContributionItem.access$19(CommandContributionItem.java:815)
+       at org.eclipse.ui.menus.CommandContributionItem$5.handleEvent(CommandContributionItem.java:805)
+       at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
+       at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1258)
+       at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3588)
+       at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3209)
+       at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2701)
+       at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2665)
+       at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2499)
+       at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:679)
+       at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
+       at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:668)
+       at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
+       at eu.etaxonomy.taxeditor.Application.start(Application.java:24)
+       at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
+       at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
+       at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
+       at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344)
+       at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
+       at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
+       at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
+       at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
+       at java.lang.reflect.Method.invoke(Method.java:606)
+       at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:622)
+       at org.eclipse.equinox.launcher.Main.basicRun(Main.java:577)
+       at org.eclipse.equinox.launcher.Main.run(Main.java:1410)
+       at org.eclipse.equinox.launcher.Main.main(Main.java:1386)
+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)
+       ... 58 more
+06-15 17:37:28 jdbc[2]: java.lang.Exception: Open Stack Trace
+       at org.h2.util.CloseWatcher.register(CloseWatcher.java:99)
+       at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:121)
+       at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:93)
+       at org.h2.Driver.connect(Driver.java:72)
+       at java.sql.DriverManager.getConnection(DriverManager.java:571)
+       at java.sql.DriverManager.getConnection(DriverManager.java:215)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.getConnection(CdmDataSourceBase.java:67)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.getConnection(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.getConnection(CdmDataSourceBase.java:45)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.getConnection(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.executeQuery(CdmDataSourceBase.java:182)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.executeQuery(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.getSingleValue(CdmDataSourceBase.java:136)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.getSingleValue(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.getMetaDataMap(CdmDataSourceBase.java:288)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.getMetaDataMap(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.taxeditor.view.datasource.CdmMetaDataAwareDataSourceContainer.getMetaDataFromDataSource(CdmMetaDataAwareDataSourceContainer.java:84)
+       at eu.etaxonomy.taxeditor.view.datasource.CdmDataSourceViewPart$DataSourceJob.run(CdmDataSourceViewPart.java:140)
+       at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
+
+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)
+       at org.h2.message.DbException.get(DbException.java:135)
+       at org.h2.jdbc.JdbcConnection.closeOld(JdbcConnection.java:175)
+       at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:120)
+       at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:93)
+       at org.h2.Driver.connect(Driver.java:72)
+       at java.sql.DriverManager.getConnection(DriverManager.java:571)
+       at java.sql.DriverManager.getConnection(DriverManager.java:215)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.testConnection(CdmDataSourceBase.java:93)
+       at eu.etaxonomy.cdm.database.CdmDataSource.testConnection(CdmDataSource.java:33)
+       at eu.etaxonomy.taxeditor.datasource.wizard.CdmDataSourceCredentialsWizardPage.testDbConfiguration(CdmDataSourceCredentialsWizardPage.java:292)
+       at eu.etaxonomy.taxeditor.datasource.wizard.CdmDataSourceCredentialsWizardPage.testDbConfiguration(CdmDataSourceCredentialsWizardPage.java:281)
+       at eu.etaxonomy.taxeditor.datasource.wizard.CdmDataSourceCredentialsWizardPage$1.widgetSelected(CdmDataSourceCredentialsWizardPage.java:165)
+       at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:240)
+       at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
+       at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1258)
+       at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3588)
+       at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3209)
+       at org.eclipse.jface.window.Window.runEventLoop(Window.java:825)
+       at org.eclipse.jface.window.Window.open(Window.java:801)
+       at eu.etaxonomy.taxeditor.view.datasource.handler.CreateDataSourceHandler.specificExecute(CreateDataSourceHandler.java:41)
+       at eu.etaxonomy.taxeditor.view.datasource.handler.AbstractDataSourceHandler.execute(AbstractDataSourceHandler.java:37)
+       at eu.etaxonomy.taxeditor.view.datasource.handler.CreateDataSourceHandler.execute(CreateDataSourceHandler.java:1)
+       at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.java:293)
+       at org.eclipse.core.commands.Command.executeWithChecks(Command.java:476)
+       at org.eclipse.core.commands.ParameterizedCommand.executeWithChecks(ParameterizedCommand.java:508)
+       at org.eclipse.ui.internal.handlers.HandlerService.executeCommand(HandlerService.java:169)
+       at org.eclipse.ui.internal.handlers.SlaveHandlerService.executeCommand(SlaveHandlerService.java:241)
+       at org.eclipse.ui.internal.handlers.SlaveHandlerService.executeCommand(SlaveHandlerService.java:241)
+       at org.eclipse.ui.menus.CommandContributionItem.handleWidgetSelection(CommandContributionItem.java:829)
+       at org.eclipse.ui.menus.CommandContributionItem.access$19(CommandContributionItem.java:815)
+       at org.eclipse.ui.menus.CommandContributionItem$5.handleEvent(CommandContributionItem.java:805)
+       at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
+       at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1258)
+       at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3588)
+       at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3209)
+       at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2701)
+       at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2665)
+       at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2499)
+       at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:679)
+       at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
+       at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:668)
+       at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
+       at eu.etaxonomy.taxeditor.Application.start(Application.java:24)
+       at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
+       at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
+       at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
+       at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344)
+       at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
+       at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
+       at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
+       at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
+       at java.lang.reflect.Method.invoke(Method.java:606)
+       at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:622)
+       at org.eclipse.equinox.launcher.Main.basicRun(Main.java:577)
+       at org.eclipse.equinox.launcher.Main.run(Main.java:1410)
+       at org.eclipse.equinox.launcher.Main.main(Main.java:1386)
+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)
+       ... 58 more
+06-15 17:37:28 jdbc[2]: java.lang.Exception: Open Stack Trace
+       at org.h2.util.CloseWatcher.register(CloseWatcher.java:99)
+       at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:121)
+       at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:93)
+       at org.h2.Driver.connect(Driver.java:72)
+       at java.sql.DriverManager.getConnection(DriverManager.java:571)
+       at java.sql.DriverManager.getConnection(DriverManager.java:215)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.getConnection(CdmDataSourceBase.java:67)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.getConnection(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.getConnection(CdmDataSourceBase.java:45)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.getConnection(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.executeQuery(CdmDataSourceBase.java:182)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.executeQuery(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.getSingleValue(CdmDataSourceBase.java:136)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.getSingleValue(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.getMetaDataMap(CdmDataSourceBase.java:288)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.getMetaDataMap(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.taxeditor.view.datasource.CdmMetaDataAwareDataSourceContainer.getMetaDataFromDataSource(CdmMetaDataAwareDataSourceContainer.java:84)
+       at eu.etaxonomy.taxeditor.view.datasource.CdmDataSourceViewPart$DataSourceJob.run(CdmDataSourceViewPart.java:140)
+       at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
+
+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)
+       at org.h2.message.DbException.get(DbException.java:135)
+       at org.h2.jdbc.JdbcConnection.closeOld(JdbcConnection.java:175)
+       at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:120)
+       at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:93)
+       at org.h2.Driver.connect(Driver.java:72)
+       at java.sql.DriverManager.getConnection(DriverManager.java:571)
+       at java.sql.DriverManager.getConnection(DriverManager.java:215)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.testConnection(CdmDataSourceBase.java:93)
+       at eu.etaxonomy.cdm.database.CdmDataSource.testConnection(CdmDataSource.java:33)
+       at eu.etaxonomy.taxeditor.datasource.wizard.CdmDataSourceCredentialsWizardPage.testDbConfiguration(CdmDataSourceCredentialsWizardPage.java:292)
+       at eu.etaxonomy.taxeditor.datasource.wizard.CdmDataSourceCredentialsWizardPage.testDbConfiguration(CdmDataSourceCredentialsWizardPage.java:281)
+       at eu.etaxonomy.taxeditor.datasource.wizard.CdmDataSourceCredentialsWizardPage$1.widgetSelected(CdmDataSourceCredentialsWizardPage.java:165)
+       at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:240)
+       at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
+       at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1258)
+       at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3588)
+       at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3209)
+       at org.eclipse.jface.window.Window.runEventLoop(Window.java:825)
+       at org.eclipse.jface.window.Window.open(Window.java:801)
+       at eu.etaxonomy.taxeditor.view.datasource.handler.CreateDataSourceHandler.specificExecute(CreateDataSourceHandler.java:41)
+       at eu.etaxonomy.taxeditor.view.datasource.handler.AbstractDataSourceHandler.execute(AbstractDataSourceHandler.java:37)
+       at eu.etaxonomy.taxeditor.view.datasource.handler.CreateDataSourceHandler.execute(CreateDataSourceHandler.java:1)
+       at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.java:293)
+       at org.eclipse.core.commands.Command.executeWithChecks(Command.java:476)
+       at org.eclipse.core.commands.ParameterizedCommand.executeWithChecks(ParameterizedCommand.java:508)
+       at org.eclipse.ui.internal.handlers.HandlerService.executeCommand(HandlerService.java:169)
+       at org.eclipse.ui.internal.handlers.SlaveHandlerService.executeCommand(SlaveHandlerService.java:241)
+       at org.eclipse.ui.internal.handlers.SlaveHandlerService.executeCommand(SlaveHandlerService.java:241)
+       at org.eclipse.ui.menus.CommandContributionItem.handleWidgetSelection(CommandContributionItem.java:829)
+       at org.eclipse.ui.menus.CommandContributionItem.access$19(CommandContributionItem.java:815)
+       at org.eclipse.ui.menus.CommandContributionItem$5.handleEvent(CommandContributionItem.java:805)
+       at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
+       at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1258)
+       at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3588)
+       at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3209)
+       at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2701)
+       at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2665)
+       at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2499)
+       at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:679)
+       at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
+       at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:668)
+       at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
+       at eu.etaxonomy.taxeditor.Application.start(Application.java:24)
+       at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
+       at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
+       at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
+       at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344)
+       at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
+       at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
+       at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
+       at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
+       at java.lang.reflect.Method.invoke(Method.java:606)
+       at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:622)
+       at org.eclipse.equinox.launcher.Main.basicRun(Main.java:577)
+       at org.eclipse.equinox.launcher.Main.run(Main.java:1410)
+       at org.eclipse.equinox.launcher.Main.main(Main.java:1386)
+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)
+       ... 58 more
+06-15 17:37:28 jdbc[2]: java.lang.Exception: Open Stack Trace
+       at org.h2.util.CloseWatcher.register(CloseWatcher.java:99)
+       at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:121)
+       at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:93)
+       at org.h2.Driver.connect(Driver.java:72)
+       at java.sql.DriverManager.getConnection(DriverManager.java:571)
+       at java.sql.DriverManager.getConnection(DriverManager.java:215)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.testConnection(CdmDataSourceBase.java:93)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.testConnection(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.checkConnection(CdmDataSourceBase.java:110)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.checkConnection(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.taxeditor.view.datasource.CdmMetaDataAwareDataSourceContainer.getMetaDataFromDataSource(CdmMetaDataAwareDataSourceContainer.java:72)
+       at eu.etaxonomy.taxeditor.view.datasource.CdmDataSourceViewPart$DataSourceJob.run(CdmDataSourceViewPart.java:140)
+       at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
+
+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)
+       at org.h2.message.DbException.get(DbException.java:135)
+       at org.h2.jdbc.JdbcConnection.closeOld(JdbcConnection.java:175)
+       at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:120)
+       at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:93)
+       at org.h2.Driver.connect(Driver.java:72)
+       at java.sql.DriverManager.getConnection(DriverManager.java:571)
+       at java.sql.DriverManager.getConnection(DriverManager.java:215)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.testConnection(CdmDataSourceBase.java:93)
+       at eu.etaxonomy.cdm.database.CdmDataSource.testConnection(CdmDataSource.java:33)
+       at eu.etaxonomy.taxeditor.datasource.wizard.CdmDataSourceCredentialsWizardPage.testDbConfiguration(CdmDataSourceCredentialsWizardPage.java:292)
+       at eu.etaxonomy.taxeditor.datasource.wizard.CdmDataSourceCredentialsWizardPage.testDbConfiguration(CdmDataSourceCredentialsWizardPage.java:281)
+       at eu.etaxonomy.taxeditor.datasource.wizard.CdmDataSourceCredentialsWizardPage$1.widgetSelected(CdmDataSourceCredentialsWizardPage.java:165)
+       at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:240)
+       at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
+       at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1258)
+       at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3588)
+       at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3209)
+       at org.eclipse.jface.window.Window.runEventLoop(Window.java:825)
+       at org.eclipse.jface.window.Window.open(Window.java:801)
+       at eu.etaxonomy.taxeditor.view.datasource.handler.CreateDataSourceHandler.specificExecute(CreateDataSourceHandler.java:41)
+       at eu.etaxonomy.taxeditor.view.datasource.handler.AbstractDataSourceHandler.execute(AbstractDataSourceHandler.java:37)
+       at eu.etaxonomy.taxeditor.view.datasource.handler.CreateDataSourceHandler.execute(CreateDataSourceHandler.java:1)
+       at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.java:293)
+       at org.eclipse.core.commands.Command.executeWithChecks(Command.java:476)
+       at org.eclipse.core.commands.ParameterizedCommand.executeWithChecks(ParameterizedCommand.java:508)
+       at org.eclipse.ui.internal.handlers.HandlerService.executeCommand(HandlerService.java:169)
+       at org.eclipse.ui.internal.handlers.SlaveHandlerService.executeCommand(SlaveHandlerService.java:241)
+       at org.eclipse.ui.internal.handlers.SlaveHandlerService.executeCommand(SlaveHandlerService.java:241)
+       at org.eclipse.ui.menus.CommandContributionItem.handleWidgetSelection(CommandContributionItem.java:829)
+       at org.eclipse.ui.menus.CommandContributionItem.access$19(CommandContributionItem.java:815)
+       at org.eclipse.ui.menus.CommandContributionItem$5.handleEvent(CommandContributionItem.java:805)
+       at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
+       at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1258)
+       at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3588)
+       at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3209)
+       at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2701)
+       at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2665)
+       at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2499)
+       at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:679)
+       at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
+       at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:668)
+       at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
+       at eu.etaxonomy.taxeditor.Application.start(Application.java:24)
+       at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
+       at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
+       at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
+       at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344)
+       at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
+       at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
+       at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
+       at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
+       at java.lang.reflect.Method.invoke(Method.java:606)
+       at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:622)
+       at org.eclipse.equinox.launcher.Main.basicRun(Main.java:577)
+       at org.eclipse.equinox.launcher.Main.run(Main.java:1410)
+       at org.eclipse.equinox.launcher.Main.main(Main.java:1386)
+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)
+       ... 58 more
+06-15 17:37:28 jdbc[2]: java.lang.Exception: Open Stack Trace
        at org.h2.util.CloseWatcher.register(CloseWatcher.java:99)
        at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:121)
        at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:93)
@@ -25,6 +345,89 @@ SELECT value FROM CdmMetaData WHERE propertyname=0 [42102-170]
        at eu.etaxonomy.taxeditor.view.datasource.CdmDataSourceViewPart$DataSourceJob.run(CdmDataSourceViewPart.java:140)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
 
+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)
+       at org.h2.message.DbException.get(DbException.java:135)
+       at org.h2.jdbc.JdbcConnection.closeOld(JdbcConnection.java:175)
+       at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:120)
+       at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:93)
+       at org.h2.Driver.connect(Driver.java:72)
+       at java.sql.DriverManager.getConnection(DriverManager.java:571)
+       at java.sql.DriverManager.getConnection(DriverManager.java:215)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.testConnection(CdmDataSourceBase.java:93)
+       at eu.etaxonomy.cdm.database.CdmDataSource.testConnection(CdmDataSource.java:33)
+       at eu.etaxonomy.taxeditor.datasource.wizard.CdmDataSourceCredentialsWizardPage.testDbConfiguration(CdmDataSourceCredentialsWizardPage.java:292)
+       at eu.etaxonomy.taxeditor.datasource.wizard.CdmDataSourceCredentialsWizardPage.testDbConfiguration(CdmDataSourceCredentialsWizardPage.java:281)
+       at eu.etaxonomy.taxeditor.datasource.wizard.CdmDataSourceCredentialsWizardPage$1.widgetSelected(CdmDataSourceCredentialsWizardPage.java:165)
+       at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:240)
+       at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
+       at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1258)
+       at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3588)
+       at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3209)
+       at org.eclipse.jface.window.Window.runEventLoop(Window.java:825)
+       at org.eclipse.jface.window.Window.open(Window.java:801)
+       at eu.etaxonomy.taxeditor.view.datasource.handler.CreateDataSourceHandler.specificExecute(CreateDataSourceHandler.java:41)
+       at eu.etaxonomy.taxeditor.view.datasource.handler.AbstractDataSourceHandler.execute(AbstractDataSourceHandler.java:37)
+       at eu.etaxonomy.taxeditor.view.datasource.handler.CreateDataSourceHandler.execute(CreateDataSourceHandler.java:1)
+       at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.java:293)
+       at org.eclipse.core.commands.Command.executeWithChecks(Command.java:476)
+       at org.eclipse.core.commands.ParameterizedCommand.executeWithChecks(ParameterizedCommand.java:508)
+       at org.eclipse.ui.internal.handlers.HandlerService.executeCommand(HandlerService.java:169)
+       at org.eclipse.ui.internal.handlers.SlaveHandlerService.executeCommand(SlaveHandlerService.java:241)
+       at org.eclipse.ui.internal.handlers.SlaveHandlerService.executeCommand(SlaveHandlerService.java:241)
+       at org.eclipse.ui.menus.CommandContributionItem.handleWidgetSelection(CommandContributionItem.java:829)
+       at org.eclipse.ui.menus.CommandContributionItem.access$19(CommandContributionItem.java:815)
+       at org.eclipse.ui.menus.CommandContributionItem$5.handleEvent(CommandContributionItem.java:805)
+       at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
+       at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1258)
+       at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3588)
+       at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3209)
+       at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2701)
+       at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2665)
+       at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2499)
+       at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:679)
+       at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
+       at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:668)
+       at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
+       at eu.etaxonomy.taxeditor.Application.start(Application.java:24)
+       at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
+       at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
+       at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
+       at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344)
+       at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
+       at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
+       at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
+       at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
+       at java.lang.reflect.Method.invoke(Method.java:606)
+       at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:622)
+       at org.eclipse.equinox.launcher.Main.basicRun(Main.java:577)
+       at org.eclipse.equinox.launcher.Main.run(Main.java:1410)
+       at org.eclipse.equinox.launcher.Main.main(Main.java:1386)
+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)
+       ... 58 more
+06-15 17:37:31 jdbc[3]: exception
+org.h2.jdbc.JdbcSQLException: Table "CDMMETADATA" not found; SQL statement:
+SELECT value FROM CdmMetaData WHERE propertyname=0 [42102-170]
+06-15 17:37:34 jdbc[6]: exception
+org.h2.jdbc.JdbcSQLException: Table "CDMMETADATA" not found; SQL statement:
+SELECT value FROM CdmMetaData WHERE propertyname=0 [42102-170]
+06-15 17:38:06 jdbc[7]: java.lang.Exception: Open Stack Trace
+       at org.h2.util.CloseWatcher.register(CloseWatcher.java:99)
+       at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:121)
+       at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:93)
+       at org.h2.Driver.connect(Driver.java:72)
+       at java.sql.DriverManager.getConnection(DriverManager.java:571)
+       at java.sql.DriverManager.getConnection(DriverManager.java:215)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.testConnection(CdmDataSourceBase.java:93)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.testConnection(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.checkConnection(CdmDataSourceBase.java:110)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.checkConnection(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.taxeditor.view.datasource.CdmMetaDataAwareDataSourceContainer.getMetaDataFromDataSource(CdmMetaDataAwareDataSourceContainer.java:72)
+       at eu.etaxonomy.taxeditor.view.datasource.CdmDataSourceViewPart$DataSourceJob.run(CdmDataSourceViewPart.java:140)
+       at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
+
 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)
@@ -89,19 +492,25 @@ 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
-06-08 17:36:22 jdbc[8]: java.lang.Exception: Open Stack Trace
+06-15 17:38:06 jdbc[7]: java.lang.Exception: Open Stack Trace
        at org.h2.util.CloseWatcher.register(CloseWatcher.java:99)
        at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:121)
        at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:93)
        at org.h2.Driver.connect(Driver.java:72)
        at java.sql.DriverManager.getConnection(DriverManager.java:571)
        at java.sql.DriverManager.getConnection(DriverManager.java:215)
-       at eu.etaxonomy.cdm.database.CdmDataSourceBase.testConnection(CdmDataSourceBase.java:93)
-       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.testConnection(CdmPersistentDataSource.java:51)
-       at eu.etaxonomy.cdm.database.CdmDataSourceBase.checkConnection(CdmDataSourceBase.java:110)
-       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.checkConnection(CdmPersistentDataSource.java:51)
-       at eu.etaxonomy.taxeditor.store.CdmStoreConnector.checkDatabaseReachable(CdmStoreConnector.java:254)
-       at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:69)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.getConnection(CdmDataSourceBase.java:67)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.getConnection(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.getConnection(CdmDataSourceBase.java:45)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.getConnection(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.executeQuery(CdmDataSourceBase.java:182)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.executeQuery(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.getSingleValue(CdmDataSourceBase.java:136)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.getSingleValue(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.getMetaDataMap(CdmDataSourceBase.java:288)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.getMetaDataMap(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.taxeditor.view.datasource.CdmMetaDataAwareDataSourceContainer.getMetaDataFromDataSource(CdmMetaDataAwareDataSourceContainer.java:84)
+       at eu.etaxonomy.taxeditor.view.datasource.CdmDataSourceViewPart$DataSourceJob.run(CdmDataSourceViewPart.java:140)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
 
 org.h2.message.DbException: The connection was not closed by the application and is garbage collected [90018-170]
@@ -168,52 +577,26 @@ 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
-06-08 17:36:22 jdbc[8]: java.lang.Exception: Open Stack Trace
+06-15 17:38:06 jdbc[7]: java.lang.Exception: Open Stack Trace
        at org.h2.util.CloseWatcher.register(CloseWatcher.java:99)
        at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:121)
        at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:93)
        at org.h2.Driver.connect(Driver.java:72)
        at java.sql.DriverManager.getConnection(DriverManager.java:571)
        at java.sql.DriverManager.getConnection(DriverManager.java:215)
-       at eu.etaxonomy.cdm.database.CdmDataSourceBase.testConnection(CdmDataSourceBase.java:93)
-       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.testConnection(CdmPersistentDataSource.java:51)
-       at eu.etaxonomy.cdm.database.CdmDataSourceBase.checkConnection(CdmDataSourceBase.java:110)
-       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.checkConnection(CdmPersistentDataSource.java:51)
-       at eu.etaxonomy.taxeditor.view.datasource.handler.ChangeConnectionHandler.execute(ChangeConnectionHandler.java:49)
-       at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.java:293)
-       at org.eclipse.core.commands.Command.executeWithChecks(Command.java:476)
-       at org.eclipse.core.commands.ParameterizedCommand.executeWithChecks(ParameterizedCommand.java:508)
-       at org.eclipse.ui.internal.handlers.HandlerService.executeCommand(HandlerService.java:169)
-       at org.eclipse.ui.internal.handlers.SlaveHandlerService.executeCommand(SlaveHandlerService.java:241)
-       at org.eclipse.ui.internal.handlers.SlaveHandlerService.executeCommand(SlaveHandlerService.java:241)
-       at org.eclipse.ui.menus.CommandContributionItem.handleWidgetSelection(CommandContributionItem.java:829)
-       at org.eclipse.ui.menus.CommandContributionItem.access$19(CommandContributionItem.java:815)
-       at org.eclipse.ui.menus.CommandContributionItem$5.handleEvent(CommandContributionItem.java:805)
-       at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
-       at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1258)
-       at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3588)
-       at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3209)
-       at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2701)
-       at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2665)
-       at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2499)
-       at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:679)
-       at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
-       at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:668)
-       at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
-       at eu.etaxonomy.taxeditor.Application.start(Application.java:24)
-       at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
-       at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
-       at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
-       at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344)
-       at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
-       at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
-       at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
-       at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
-       at java.lang.reflect.Method.invoke(Method.java:606)
-       at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:622)
-       at org.eclipse.equinox.launcher.Main.basicRun(Main.java:577)
-       at org.eclipse.equinox.launcher.Main.run(Main.java:1410)
-       at org.eclipse.equinox.launcher.Main.main(Main.java:1386)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.getConnection(CdmDataSourceBase.java:67)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.getConnection(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.getConnection(CdmDataSourceBase.java:45)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.getConnection(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.executeQuery(CdmDataSourceBase.java:182)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.executeQuery(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.getSingleValue(CdmDataSourceBase.java:136)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.getSingleValue(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.getMetaDataMap(CdmDataSourceBase.java:288)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.getMetaDataMap(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.taxeditor.view.datasource.CdmMetaDataAwareDataSourceContainer.getMetaDataFromDataSource(CdmMetaDataAwareDataSourceContainer.java:84)
+       at eu.etaxonomy.taxeditor.view.datasource.CdmDataSourceViewPart$DataSourceJob.run(CdmDataSourceViewPart.java:140)
+       at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
 
 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)
@@ -279,7 +662,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
-06-08 17:36:22 jdbc[8]: java.lang.Exception: Open Stack Trace
+06-15 17:38:06 jdbc[7]: java.lang.Exception: Open Stack Trace
        at org.h2.util.CloseWatcher.register(CloseWatcher.java:99)
        at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:121)
        at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:93)
@@ -294,10 +677,12 @@ Caused by: org.h2.jdbc.JdbcSQLException: The connection was not closed by the ap
        at eu.etaxonomy.cdm.database.CdmPersistentDataSource.executeQuery(CdmPersistentDataSource.java:51)
        at eu.etaxonomy.cdm.database.CdmDataSourceBase.getSingleValue(CdmDataSourceBase.java:136)
        at eu.etaxonomy.cdm.database.CdmPersistentDataSource.getSingleValue(CdmPersistentDataSource.java:51)
-       at eu.etaxonomy.cdm.database.CdmDataSourceBase.getMetaDataMap(CdmDataSourceBase.java:288)
-       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.getMetaDataMap(CdmPersistentDataSource.java:51)
-       at eu.etaxonomy.taxeditor.view.datasource.CdmMetaDataAwareDataSourceContainer.getMetaDataFromDataSource(CdmMetaDataAwareDataSourceContainer.java:84)
-       at eu.etaxonomy.taxeditor.view.datasource.CdmDataSourceViewPart$DataSourceJob.run(CdmDataSourceViewPart.java:140)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.getDbSchemaVersion(CdmDataSourceBase.java:156)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.getDbSchemaVersion(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.isDbEmpty(CdmDataSourceBase.java:165)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.isDbEmpty(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.taxeditor.store.CdmStoreConnector.checkIsNonEmptyCdmDatabase(CdmStoreConnector.java:231)
+       at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:73)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
 
 org.h2.message.DbException: The connection was not closed by the application and is garbage collected [90018-170]
@@ -364,26 +749,52 @@ 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
-06-08 17:36:22 jdbc[8]: java.lang.Exception: Open Stack Trace
+06-15 17:38:06 jdbc[7]: java.lang.Exception: Open Stack Trace
        at org.h2.util.CloseWatcher.register(CloseWatcher.java:99)
        at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:121)
        at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:93)
        at org.h2.Driver.connect(Driver.java:72)
        at java.sql.DriverManager.getConnection(DriverManager.java:571)
        at java.sql.DriverManager.getConnection(DriverManager.java:215)
-       at eu.etaxonomy.cdm.database.CdmDataSourceBase.getConnection(CdmDataSourceBase.java:67)
-       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.getConnection(CdmPersistentDataSource.java:51)
-       at eu.etaxonomy.cdm.database.CdmDataSourceBase.getConnection(CdmDataSourceBase.java:45)
-       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.getConnection(CdmPersistentDataSource.java:51)
-       at eu.etaxonomy.cdm.database.CdmDataSourceBase.executeQuery(CdmDataSourceBase.java:182)
-       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.executeQuery(CdmPersistentDataSource.java:51)
-       at eu.etaxonomy.cdm.database.CdmDataSourceBase.getSingleValue(CdmDataSourceBase.java:136)
-       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.getSingleValue(CdmPersistentDataSource.java:51)
-       at eu.etaxonomy.cdm.database.CdmDataSourceBase.getMetaDataMap(CdmDataSourceBase.java:288)
-       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.getMetaDataMap(CdmPersistentDataSource.java:51)
-       at eu.etaxonomy.taxeditor.view.datasource.CdmMetaDataAwareDataSourceContainer.getMetaDataFromDataSource(CdmMetaDataAwareDataSourceContainer.java:84)
-       at eu.etaxonomy.taxeditor.view.datasource.CdmDataSourceViewPart$DataSourceJob.run(CdmDataSourceViewPart.java:140)
-       at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.testConnection(CdmDataSourceBase.java:93)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.testConnection(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.checkConnection(CdmDataSourceBase.java:110)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.checkConnection(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.taxeditor.view.datasource.handler.ChangeConnectionHandler.execute(ChangeConnectionHandler.java:49)
+       at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.java:293)
+       at org.eclipse.core.commands.Command.executeWithChecks(Command.java:476)
+       at org.eclipse.core.commands.ParameterizedCommand.executeWithChecks(ParameterizedCommand.java:508)
+       at org.eclipse.ui.internal.handlers.HandlerService.executeCommand(HandlerService.java:169)
+       at org.eclipse.ui.internal.handlers.SlaveHandlerService.executeCommand(SlaveHandlerService.java:241)
+       at org.eclipse.ui.internal.handlers.SlaveHandlerService.executeCommand(SlaveHandlerService.java:241)
+       at org.eclipse.ui.menus.CommandContributionItem.handleWidgetSelection(CommandContributionItem.java:829)
+       at org.eclipse.ui.menus.CommandContributionItem.access$19(CommandContributionItem.java:815)
+       at org.eclipse.ui.menus.CommandContributionItem$5.handleEvent(CommandContributionItem.java:805)
+       at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
+       at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1258)
+       at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3588)
+       at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3209)
+       at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2701)
+       at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2665)
+       at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2499)
+       at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:679)
+       at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
+       at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:668)
+       at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
+       at eu.etaxonomy.taxeditor.Application.start(Application.java:24)
+       at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
+       at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
+       at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
+       at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344)
+       at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
+       at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
+       at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
+       at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
+       at java.lang.reflect.Method.invoke(Method.java:606)
+       at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:622)
+       at org.eclipse.equinox.launcher.Main.basicRun(Main.java:577)
+       at org.eclipse.equinox.launcher.Main.run(Main.java:1410)
+       at org.eclipse.equinox.launcher.Main.main(Main.java:1386)
 
 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)
@@ -449,7 +860,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
-06-08 17:36:22 jdbc[8]: java.lang.Exception: Open Stack Trace
+06-15 17:38:06 jdbc[7]: java.lang.Exception: Open Stack Trace
        at org.h2.util.CloseWatcher.register(CloseWatcher.java:99)
        at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:121)
        at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:93)
@@ -464,12 +875,10 @@ Caused by: org.h2.jdbc.JdbcSQLException: The connection was not closed by the ap
        at eu.etaxonomy.cdm.database.CdmPersistentDataSource.executeQuery(CdmPersistentDataSource.java:51)
        at eu.etaxonomy.cdm.database.CdmDataSourceBase.getSingleValue(CdmDataSourceBase.java:136)
        at eu.etaxonomy.cdm.database.CdmPersistentDataSource.getSingleValue(CdmPersistentDataSource.java:51)
-       at eu.etaxonomy.cdm.database.CdmDataSourceBase.getDbSchemaVersion(CdmDataSourceBase.java:156)
-       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.getDbSchemaVersion(CdmPersistentDataSource.java:51)
-       at eu.etaxonomy.cdm.database.CdmDataSourceBase.isDbEmpty(CdmDataSourceBase.java:165)
-       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.isDbEmpty(CdmPersistentDataSource.java:51)
-       at eu.etaxonomy.taxeditor.store.CdmStoreConnector.checkIsNonEmptyCdmDatabase(CdmStoreConnector.java:232)
-       at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:73)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.getMetaDataMap(CdmDataSourceBase.java:288)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.getMetaDataMap(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.taxeditor.view.datasource.CdmMetaDataAwareDataSourceContainer.getMetaDataFromDataSource(CdmMetaDataAwareDataSourceContainer.java:84)
+       at eu.etaxonomy.taxeditor.view.datasource.CdmDataSourceViewPart$DataSourceJob.run(CdmDataSourceViewPart.java:140)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
 
 org.h2.message.DbException: The connection was not closed by the application and is garbage collected [90018-170]
@@ -536,18 +945,24 @@ 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
-06-08 17:36:22 jdbc[8]: java.lang.Exception: Open Stack Trace
+06-15 17:38:06 jdbc[7]: java.lang.Exception: Open Stack Trace
        at org.h2.util.CloseWatcher.register(CloseWatcher.java:99)
        at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:121)
        at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:93)
        at org.h2.Driver.connect(Driver.java:72)
        at java.sql.DriverManager.getConnection(DriverManager.java:571)
        at java.sql.DriverManager.getConnection(DriverManager.java:215)
-       at eu.etaxonomy.cdm.database.CdmDataSourceBase.testConnection(CdmDataSourceBase.java:93)
-       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.testConnection(CdmPersistentDataSource.java:51)
-       at eu.etaxonomy.cdm.database.CdmDataSourceBase.checkConnection(CdmDataSourceBase.java:110)
-       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.checkConnection(CdmPersistentDataSource.java:51)
-       at eu.etaxonomy.taxeditor.view.datasource.CdmMetaDataAwareDataSourceContainer.getMetaDataFromDataSource(CdmMetaDataAwareDataSourceContainer.java:72)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.getConnection(CdmDataSourceBase.java:67)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.getConnection(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.getConnection(CdmDataSourceBase.java:45)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.getConnection(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.executeQuery(CdmDataSourceBase.java:182)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.executeQuery(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.getSingleValue(CdmDataSourceBase.java:136)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.getSingleValue(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.getMetaDataMap(CdmDataSourceBase.java:288)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.getMetaDataMap(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.taxeditor.view.datasource.CdmMetaDataAwareDataSourceContainer.getMetaDataFromDataSource(CdmMetaDataAwareDataSourceContainer.java:84)
        at eu.etaxonomy.taxeditor.view.datasource.CdmDataSourceViewPart$DataSourceJob.run(CdmDataSourceViewPart.java:140)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
 
@@ -615,7 +1030,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
-06-08 17:36:22 jdbc[8]: java.lang.Exception: Open Stack Trace
+06-15 17:38:06 jdbc[7]: java.lang.Exception: Open Stack Trace
        at org.h2.util.CloseWatcher.register(CloseWatcher.java:99)
        at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:121)
        at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:93)
@@ -700,25 +1115,19 @@ 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
-06-08 17:36:22 jdbc[8]: java.lang.Exception: Open Stack Trace
+06-15 17:38:06 jdbc[7]: java.lang.Exception: Open Stack Trace
        at org.h2.util.CloseWatcher.register(CloseWatcher.java:99)
        at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:121)
        at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:93)
        at org.h2.Driver.connect(Driver.java:72)
        at java.sql.DriverManager.getConnection(DriverManager.java:571)
        at java.sql.DriverManager.getConnection(DriverManager.java:215)
-       at eu.etaxonomy.cdm.database.CdmDataSourceBase.getConnection(CdmDataSourceBase.java:67)
-       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.getConnection(CdmPersistentDataSource.java:51)
-       at eu.etaxonomy.cdm.database.CdmDataSourceBase.getConnection(CdmDataSourceBase.java:45)
-       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.getConnection(CdmPersistentDataSource.java:51)
-       at eu.etaxonomy.cdm.database.CdmDataSourceBase.executeQuery(CdmDataSourceBase.java:182)
-       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.executeQuery(CdmPersistentDataSource.java:51)
-       at eu.etaxonomy.cdm.database.CdmDataSourceBase.getSingleValue(CdmDataSourceBase.java:136)
-       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.getSingleValue(CdmPersistentDataSource.java:51)
-       at eu.etaxonomy.cdm.database.CdmDataSourceBase.getMetaDataMap(CdmDataSourceBase.java:288)
-       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.getMetaDataMap(CdmPersistentDataSource.java:51)
-       at eu.etaxonomy.taxeditor.view.datasource.CdmMetaDataAwareDataSourceContainer.getMetaDataFromDataSource(CdmMetaDataAwareDataSourceContainer.java:84)
-       at eu.etaxonomy.taxeditor.view.datasource.CdmDataSourceViewPart$DataSourceJob.run(CdmDataSourceViewPart.java:140)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.testConnection(CdmDataSourceBase.java:93)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.testConnection(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.cdm.database.CdmDataSourceBase.checkConnection(CdmDataSourceBase.java:110)
+       at eu.etaxonomy.cdm.database.CdmPersistentDataSource.checkConnection(CdmPersistentDataSource.java:51)
+       at eu.etaxonomy.taxeditor.store.CdmStoreConnector.checkDatabaseReachable(CdmStoreConnector.java:253)
+       at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:69)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
 
 org.h2.message.DbException: The connection was not closed by the application and is garbage collected [90018-170]
@@ -785,7 +1194,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
-06-08 17:36:22 jdbc[8]: java.lang.Exception: Open Stack Trace
+06-15 17:38:06 jdbc[7]: java.lang.Exception: Open Stack Trace
        at org.h2.util.CloseWatcher.register(CloseWatcher.java:99)
        at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:121)
        at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:93)
@@ -864,2971 +1273,2971 @@ 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
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ADDRESS" not found; SQL statement:
 alter table Address drop constraint FK1ED033D44FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ADDRESS" not found; SQL statement:
 alter table Address drop constraint FK1ED033D4BC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ADDRESS" not found; SQL statement:
 alter table Address drop constraint FK1ED033D4CDD3C17E [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ADDRESS" not found; SQL statement:
 alter table Address drop constraint FK1ED033D4132A2FE8 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ADDRESS_AUD" not found; SQL statement:
 alter table Address_AUD drop constraint FK115657A534869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE" not found; SQL statement:
 alter table AgentBase drop constraint FK1205D3564FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE" not found; SQL statement:
 alter table AgentBase drop constraint FK1205D356BC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE" not found; SQL statement:
 alter table AgentBase drop constraint FK1205D356A830578 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_AUD" not found; SQL statement:
 alter table AgentBase_AUD drop constraint FK29CC662734869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_ADDRESS" not found; SQL statement:
 alter table AgentBase_Address drop constraint FK1EDFF7EB50751EC5 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_ADDRESS" not found; SQL statement:
 alter table AgentBase_Address drop constraint FK1EDFF7EB86EFC5D4 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_AGENTBASE" not found; SQL statement:
 alter table AgentBase_AgentBase drop constraint FK4D34EDADE9E535F9 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_AGENTBASE" not found; SQL statement:
 alter table AgentBase_AgentBase drop constraint FK4D34EDAD1C0E9907 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_ANNOTATION" not found; SQL statement:
 alter table AgentBase_Annotation drop constraint FK44D5F7D81E403E0B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_ANNOTATION" not found; SQL statement:
 alter table AgentBase_Annotation drop constraint FK44D5F7D886EFC5D4 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_CREDIT" not found; SQL statement:
 alter table AgentBase_Credit drop constraint FK2636742232D1B9F [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_CREDIT" not found; SQL statement:
 alter table AgentBase_Credit drop constraint FK2636742286EFC5D4 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_DEFINEDTERMBASE" not found; SQL statement:
 alter table AgentBase_DefinedTermBase drop constraint FK6665C77DF116FEB0 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_DEFINEDTERMBASE" not found; SQL statement:
 alter table AgentBase_DefinedTermBase drop constraint FK6665C77D8D9AB196 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_EXTENSION" not found; SQL statement:
 alter table AgentBase_Extension drop constraint FK8E1E5676927DE9DF [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_EXTENSION" not found; SQL statement:
 alter table AgentBase_Extension drop constraint FK8E1E567686EFC5D4 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_IDENTIFIER" not found; SQL statement:
 alter table AgentBase_Identifier drop constraint FK410EB952E12073FF [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_IDENTIFIER" not found; SQL statement:
 alter table AgentBase_Identifier drop constraint FK410EB95286EFC5D4 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_IDENTIFIER_AUD" not found; SQL statement:
 alter table AgentBase_Identifier_AUD drop constraint FK3DB9EE2334869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_MARKER" not found; SQL statement:
 alter table AgentBase_Marker drop constraint FK365D5D63777265A1 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_MARKER" not found; SQL statement:
 alter table AgentBase_Marker drop constraint FK365D5D6386EFC5D4 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_MEDIA" not found; SQL statement:
 alter table AgentBase_Media drop constraint FKE8FC5D9BC2C29593 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_MEDIA" not found; SQL statement:
 alter table AgentBase_Media drop constraint FKE8FC5D9B86EFC5D4 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table AgentBase_OriginalSourceBase drop constraint FKB482C5E63A6735D9 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table AgentBase_OriginalSourceBase drop constraint FKB482C5E686EFC5D4 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_RIGHTSINFO" not found; SQL statement:
 alter table AgentBase_RightsInfo drop constraint FK4FD6A3CEC13F7B21 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AGENTBASE_RIGHTSINFO" not found; SQL statement:
 alter table AgentBase_RightsInfo drop constraint FK4FD6A3CE86EFC5D4 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATION" not found; SQL statement:
 alter table Amplification drop constraint FK9DA6B4164FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATION" not found; SQL statement:
 alter table Amplification drop constraint FK9DA6B416BC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATION" not found; SQL statement:
 alter table Amplification drop constraint FK9DA6B4163DA462D5 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATION" not found; SQL statement:
 alter table Amplification drop constraint FK9DA6B4166D2CE418 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATION" not found; SQL statement:
 alter table Amplification drop constraint FK9DA6B4163781DA30 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATION" not found; SQL statement:
 alter table Amplification drop constraint FK9DA6B416403E17F4 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATION" not found; SQL statement:
 alter table Amplification drop constraint FK9DA6B416AFCA96F8 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATION" not found; SQL statement:
 alter table Amplification drop constraint FK9DA6B4161600EAB3 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATIONRESULT" not found; SQL statement:
 alter table AmplificationResult drop constraint FK484B7FD34FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATIONRESULT" not found; SQL statement:
 alter table AmplificationResult drop constraint FK484B7FD3BC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATIONRESULT" not found; SQL statement:
 alter table AmplificationResult drop constraint FK484B7FD3614CEB1F [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATIONRESULT" not found; SQL statement:
 alter table AmplificationResult drop constraint FK484B7FD3DEC4385F [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATIONRESULT" not found; SQL statement:
 alter table AmplificationResult drop constraint FK484B7FD3E671A9DF [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATIONRESULT" not found; SQL statement:
 alter table AmplificationResult drop constraint FK484B7FD3825BDDD3 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATIONRESULT_AUD" not found; SQL statement:
 alter table AmplificationResult_AUD drop constraint FK343D8C2434869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATIONRESULT_ANNOTATION" not found; SQL statement:
 alter table AmplificationResult_Annotation drop constraint FKFE4A8B3B1E403E0B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATIONRESULT_ANNOTATION" not found; SQL statement:
 alter table AmplificationResult_Annotation drop constraint FKFE4A8B3BD320A65F [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATIONRESULT_ANNOTATION_AUD" not found; SQL statement:
 alter table AmplificationResult_Annotation_AUD drop constraint FK7378A38C34869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATIONRESULT_MARKER" not found; SQL statement:
 alter table AmplificationResult_Marker drop constraint FK5B911A46777265A1 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATIONRESULT_MARKER" not found; SQL statement:
 alter table AmplificationResult_Marker drop constraint FK5B911A46D320A65F [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATIONRESULT_MARKER_AUD" not found; SQL statement:
 alter table AmplificationResult_Marker_AUD drop constraint FK9D7AB51734869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATION_AUD" not found; SQL statement:
 alter table Amplification_AUD drop constraint FK448EE6E734869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATION_ANNOTATION" not found; SQL statement:
 alter table Amplification_Annotation drop constraint FK6B251F181E403E0B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATION_ANNOTATION" not found; SQL statement:
 alter table Amplification_Annotation drop constraint FK6B251F18614CEB1F [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATION_MARKER" not found; SQL statement:
 alter table Amplification_Marker drop constraint FK46E224A3777265A1 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "AMPLIFICATION_MARKER" not found; SQL statement:
 alter table Amplification_Marker drop constraint FK46E224A3614CEB1F [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ANNOTATION" not found; SQL statement:
 alter table Annotation drop constraint FK1A21C74F4FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ANNOTATION" not found; SQL statement:
 alter table Annotation drop constraint FK1A21C74FBC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ANNOTATION" not found; SQL statement:
 alter table Annotation drop constraint FK1A21C74FE8D36B00 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ANNOTATION" not found; SQL statement:
 alter table Annotation drop constraint FK1A21C74FDF299D00 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ANNOTATION" not found; SQL statement:
 alter table Annotation drop constraint FK1A21C74FE7692740 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ANNOTATION_AUD" not found; SQL statement:
 alter table Annotation_AUD drop constraint FK1A6BB5A034869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ANNOTATION_ANNOTATION" not found; SQL statement:
 alter table Annotation_Annotation drop constraint FKC99DFE3F1E403E0B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ANNOTATION_ANNOTATION" not found; SQL statement:
 alter table Annotation_Annotation drop constraint FKC99DFE3F994CCE20 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ANNOTATION_MARKER" not found; SQL statement:
 alter table Annotation_Marker drop constraint FKB17EAF4A777265A1 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ANNOTATION_MARKER" not found; SQL statement:
 alter table Annotation_Marker drop constraint FKB17EAF4A994CCE20 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CDMMETADATA" not found; SQL statement:
 alter table CdmMetaData drop constraint FK6EA78F7B4FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION" not found; SQL statement:
 alter table Classification drop constraint FKDB1100064FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION" not found; SQL statement:
 alter table Classification drop constraint FKDB110006BC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION" not found; SQL statement:
 alter table Classification drop constraint FKDB11000677E2F09E [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION" not found; SQL statement:
 alter table Classification drop constraint FKDB1100068D0FB4DA [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION" not found; SQL statement:
 alter table Classification drop constraint FKDB110006D1E08681 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_AUD" not found; SQL statement:
 alter table Classification_AUD drop constraint FKEB11BAD734869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_ANNOTATION" not found; SQL statement:
 alter table Classification_Annotation drop constraint FKC978FD281E403E0B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_ANNOTATION" not found; SQL statement:
 alter table Classification_Annotation drop constraint FKC978FD2884A3CE1B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_CREDIT" not found; SQL statement:
 alter table Classification_Credit drop constraint FK4950A17232D1B9F [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_CREDIT" not found; SQL statement:
 alter table Classification_Credit drop constraint FK4950A17284A3CE1B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_DESCRIPTION" not found; SQL statement:
 alter table Classification_Description drop constraint FK382EB1232BEBA58D [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_DESCRIPTION" not found; SQL statement:
 alter table Classification_Description drop constraint FK382EB12328459272 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_DESCRIPTION" not found; SQL statement:
 alter table Classification_Description drop constraint FK382EB12384A3CE1B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_DESCRIPTION_AUD" not found; SQL statement:
 alter table Classification_Description_AUD drop constraint FK3187957434869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_EXTENSION" not found; SQL statement:
 alter table Classification_Extension drop constraint FK715D6726927DE9DF [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_EXTENSION" not found; SQL statement:
 alter table Classification_Extension drop constraint FK715D672684A3CE1B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_GEOSCOPE" not found; SQL statement:
 alter table Classification_GeoScope drop constraint FK379FE5BC86D04E74 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_GEOSCOPE" not found; SQL statement:
 alter table Classification_GeoScope drop constraint FK379FE5BC84A3CE1B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_GEOSCOPE_AUD" not found; SQL statement:
 alter table Classification_GeoScope_AUD drop constraint FKF5AAD58D34869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_IDENTIFIER" not found; SQL statement:
 alter table Classification_Identifier drop constraint FKC5B1BEA2E12073FF [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_IDENTIFIER" not found; SQL statement:
 alter table Classification_Identifier drop constraint FKC5B1BEA284A3CE1B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_IDENTIFIER_AUD" not found; SQL statement:
 alter table Classification_Identifier_AUD drop constraint FK3B9CB7334869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_MARKER" not found; SQL statement:
 alter table Classification_Marker drop constraint FK59778AB3777265A1 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_MARKER" not found; SQL statement:
 alter table Classification_Marker drop constraint FK59778AB384A3CE1B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table Classification_OriginalSourceBase drop constraint FK91B37B363A6735D9 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table Classification_OriginalSourceBase drop constraint FK91B37B3684A3CE1B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_RIGHTSINFO" not found; SQL statement:
 alter table Classification_RightsInfo drop constraint FKD479A91EC13F7B21 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CLASSIFICATION_RIGHTSINFO" not found; SQL statement:
 alter table Classification_RightsInfo drop constraint FKD479A91E84A3CE1B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION" not found; SQL statement:
 alter table Collection drop constraint FKF078ABE4FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION" not found; SQL statement:
 alter table Collection drop constraint FKF078ABEBC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION" not found; SQL statement:
 alter table Collection drop constraint FKF078ABE16B9CA77 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION" not found; SQL statement:
 alter table Collection drop constraint FKF078ABECEB38EFF [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_AUD" not found; SQL statement:
 alter table Collection_AUD drop constraint FKD6D4298F34869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_ANNOTATION" not found; SQL statement:
 alter table Collection_Annotation drop constraint FKEA970F701E403E0B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_ANNOTATION" not found; SQL statement:
 alter table Collection_Annotation drop constraint FKEA970F70EB62BE9A [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_CREDIT" not found; SQL statement:
 alter table Collection_Credit drop constraint FKE0A317BA32D1B9F [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_CREDIT" not found; SQL statement:
 alter table Collection_Credit drop constraint FKE0A317BAEB62BE9A [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_EXTENSION" not found; SQL statement:
 alter table Collection_Extension drop constraint FKF68FEBDE927DE9DF [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_EXTENSION" not found; SQL statement:
 alter table Collection_Extension drop constraint FKF68FEBDEEB62BE9A [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_IDENTIFIER" not found; SQL statement:
 alter table Collection_Identifier drop constraint FKE6CFD0EAE12073FF [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_IDENTIFIER" not found; SQL statement:
 alter table Collection_Identifier drop constraint FKE6CFD0EAEB62BE9A [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_IDENTIFIER_AUD" not found; SQL statement:
 alter table Collection_Identifier_AUD drop constraint FK677579BB34869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_MARKER" not found; SQL statement:
 alter table Collection_Marker drop constraint FKF0CA00FB777265A1 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_MARKER" not found; SQL statement:
 alter table Collection_Marker drop constraint FKF0CA00FBEB62BE9A [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_MEDIA" not found; SQL statement:
 alter table Collection_Media drop constraint FK7320E703C2C29593 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_MEDIA" not found; SQL statement:
 alter table Collection_Media drop constraint FK7320E703EB62BE9A [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table Collection_OriginalSourceBase drop constraint FK37DEC57E3A6735D9 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table Collection_OriginalSourceBase drop constraint FK37DEC57EEB62BE9A [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_RIGHTSINFO" not found; SQL statement:
 alter table Collection_RightsInfo drop constraint FKF597BB66C13F7B21 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "COLLECTION_RIGHTSINFO" not found; SQL statement:
 alter table Collection_RightsInfo drop constraint FKF597BB66EB62BE9A [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CREDIT" not found; SQL statement:
 alter table Credit drop constraint FK78CA97194FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CREDIT" not found; SQL statement:
 alter table Credit drop constraint FK78CA9719BC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CREDIT" not found; SQL statement:
 alter table Credit drop constraint FK78CA9719E8D36B00 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CREDIT" not found; SQL statement:
 alter table Credit drop constraint FK78CA9719F7976FC5 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CREDIT_AUD" not found; SQL statement:
 alter table Credit_AUD drop constraint FK5533906A34869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CREDIT_ANNOTATION" not found; SQL statement:
 alter table Credit_Annotation drop constraint FKE8DA4C351E403E0B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CREDIT_ANNOTATION" not found; SQL statement:
 alter table Credit_Annotation drop constraint FKE8DA4C354CF694E0 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CREDIT_MARKER" not found; SQL statement:
 alter table Credit_Marker drop constraint FK10CC6840777265A1 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "CREDIT_MARKER" not found; SQL statement:
 alter table Credit_Marker drop constraint FK10CC68404CF694E0 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE" not found; SQL statement:
 alter table DefinedTermBase drop constraint FK2E340A664FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE" not found; SQL statement:
 alter table DefinedTermBase drop constraint FK2E340A66BC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE" not found; SQL statement:
 alter table DefinedTermBase drop constraint FK2E340A663B0DA0EF [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE" not found; SQL statement:
 alter table DefinedTermBase drop constraint FK2E340A66D040DBF0 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE" not found; SQL statement:
 alter table DefinedTermBase drop constraint FK2E340A6647AF954C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE" not found; SQL statement:
 alter table DefinedTermBase drop constraint FK2E340A6624AF3F70 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE" not found; SQL statement:
 alter table DefinedTermBase drop constraint FK2E340A6636C6F6F6 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE" not found; SQL statement:
 alter table DefinedTermBase drop constraint FK2E340A66CC0240B6 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE" not found; SQL statement:
 alter table DefinedTermBase drop constraint FK2E340A6688206484 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_AUD" not found; SQL statement:
 alter table DefinedTermBase_AUD drop constraint FK86E8953734869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_ANNOTATION" not found; SQL statement:
 alter table DefinedTermBase_Annotation drop constraint FK589B6C81E403E0B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_ANNOTATION" not found; SQL statement:
 alter table DefinedTermBase_Annotation drop constraint FK589B6C8C0DB4934 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_CONTINENT" not found; SQL statement:
 alter table DefinedTermBase_Continent drop constraint FK45F60AFB9AEE7205 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_CONTINENT" not found; SQL statement:
 alter table DefinedTermBase_Continent drop constraint FK45F60AFB901A60CE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_COUNTRY" not found; SQL statement:
 alter table DefinedTermBase_Country drop constraint FKA2ADDA9D47CE41A0 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_COUNTRY" not found; SQL statement:
 alter table DefinedTermBase_Country drop constraint FKA2ADDA9DCE5C0F9E [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_CREDIT" not found; SQL statement:
 alter table DefinedTermBase_Credit drop constraint FK78FF2B1232D1B9F [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_CREDIT" not found; SQL statement:
 alter table DefinedTermBase_Credit drop constraint FK78FF2B12C0DB4934 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_EXTENSION" not found; SQL statement:
 alter table DefinedTermBase_Extension drop constraint FK397EF986927DE9DF [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_EXTENSION" not found; SQL statement:
 alter table DefinedTermBase_Extension drop constraint FK397EF986C0DB4934 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_IDENTIFIER" not found; SQL statement:
 alter table DefinedTermBase_Identifier drop constraint FK1C27842E12073FF [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_IDENTIFIER" not found; SQL statement:
 alter table DefinedTermBase_Identifier drop constraint FK1C27842C0DB4934 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_IDENTIFIER_AUD" not found; SQL statement:
 alter table DefinedTermBase_Identifier_AUD drop constraint FKEF94B51334869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_MARKER" not found; SQL statement:
 alter table DefinedTermBase_Marker drop constraint FK89261453777265A1 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_MARKER" not found; SQL statement:
 alter table DefinedTermBase_Marker drop constraint FK89261453C0DB4934 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_MEASUREMENTUNIT" not found; SQL statement:
 alter table DefinedTermBase_MeasurementUnit drop constraint FKE9D17767F3BB39BD [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_MEASUREMENTUNIT" not found; SQL statement:
 alter table DefinedTermBase_MeasurementUnit drop constraint FKE9D17767D0BDAE9B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_MEDIA" not found; SQL statement:
 alter table DefinedTermBase_Media drop constraint FK6FC908ABC2C29593 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_MEDIA" not found; SQL statement:
 alter table DefinedTermBase_Media drop constraint FK6FC908ABC0DB4934 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table DefinedTermBase_OriginalSourceBase drop constraint FKDCC094D63A6735D9 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table DefinedTermBase_OriginalSourceBase drop constraint FKDCC094D6C0DB4934 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_RECOMMENDEDMODIFIERENUMERATION" not found; SQL statement:
 alter table DefinedTermBase_RecommendedModifierEnumeration drop constraint FKA72FB5AE5255EAFD [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_RECOMMENDEDMODIFIERENUMERATION" not found; SQL statement:
 alter table DefinedTermBase_RecommendedModifierEnumeration drop constraint FKA72FB5AED0BDAE9B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_REPRESENTATION" not found; SQL statement:
 alter table DefinedTermBase_Representation drop constraint FKAAC8AFE6B31C4747 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_REPRESENTATION" not found; SQL statement:
 alter table DefinedTermBase_Representation drop constraint FKAAC8AFE6C0DB4934 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_RIGHTSINFO" not found; SQL statement:
 alter table DefinedTermBase_RightsInfo drop constraint FK108A62BEC13F7B21 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_RIGHTSINFO" not found; SQL statement:
 alter table DefinedTermBase_RightsInfo drop constraint FK108A62BEC0DB4934 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_STATISTICALMEASURE" not found; SQL statement:
 alter table DefinedTermBase_StatisticalMeasure drop constraint FK6FF15DFCC9CD5B57 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_STATISTICALMEASURE" not found; SQL statement:
 alter table DefinedTermBase_StatisticalMeasure drop constraint FK6FF15DFCD0BDAE9B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_SUPPORTEDCATEGORICALENUMERATION" not found; SQL statement:
 alter table DefinedTermBase_SupportedCategoricalEnumeration drop constraint FK2170B25C5AF2C74 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DEFINEDTERMBASE_SUPPORTEDCATEGORICALENUMERATION" not found; SQL statement:
 alter table DefinedTermBase_SupportedCategoricalEnumeration drop constraint FK2170B25CD0BDAE9B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DERIVATIONEVENT" not found; SQL statement:
 alter table DerivationEvent drop constraint FK426BC034FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DERIVATIONEVENT" not found; SQL statement:
 alter table DerivationEvent drop constraint FK426BC03BC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DERIVATIONEVENT" not found; SQL statement:
 alter table DerivationEvent drop constraint FK426BC033DA462D5 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DERIVATIONEVENT" not found; SQL statement:
 alter table DerivationEvent drop constraint FK426BC03403E17F4 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DERIVATIONEVENT" not found; SQL statement:
 alter table DerivationEvent drop constraint FK426BC038524B89D [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DERIVATIONEVENT_AUD" not found; SQL statement:
 alter table DerivationEvent_AUD drop constraint FKDABF305434869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DERIVATIONEVENT_ANNOTATION" not found; SQL statement:
 alter table DerivationEvent_Annotation drop constraint FKEFA0D10B1E403E0B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DERIVATIONEVENT_ANNOTATION" not found; SQL statement:
 alter table DerivationEvent_Annotation drop constraint FKEFA0D10B4AAB411A [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DERIVATIONEVENT_MARKER" not found; SQL statement:
 alter table DerivationEvent_Marker drop constraint FKE412C816777265A1 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DERIVATIONEVENT_MARKER" not found; SQL statement:
 alter table DerivationEvent_Marker drop constraint FKE412C8164AAB411A [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE" not found; SQL statement:
 alter table DescriptionBase drop constraint FKFF4D58CD4FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE" not found; SQL statement:
 alter table DescriptionBase drop constraint FKFF4D58CDBC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE" not found; SQL statement:
 alter table DescriptionBase drop constraint FKFF4D58CDB56856A4 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE" not found; SQL statement:
 alter table DescriptionBase drop constraint FKFF4D58CDDE9A3E39 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE" not found; SQL statement:
 alter table DescriptionBase drop constraint FKFF4D58CDDA935185 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_AUD" not found; SQL statement:
 alter table DescriptionBase_AUD drop constraint FK7456581E34869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_ANNOTATION" not found; SQL statement:
 alter table DescriptionBase_Annotation drop constraint FKF3AD32011E403E0B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_ANNOTATION" not found; SQL statement:
 alter table DescriptionBase_Annotation drop constraint FKF3AD3201F1DDBFAB [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_CREDIT" not found; SQL statement:
 alter table DescriptionBase_Credit drop constraint FK510B2ACB32D1B9F [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_CREDIT" not found; SQL statement:
 alter table DescriptionBase_Credit drop constraint FK510B2ACBF1DDBFAB [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_EXTENSION" not found; SQL statement:
 alter table DescriptionBase_Extension drop constraint FKD5D2B32D927DE9DF [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_EXTENSION" not found; SQL statement:
 alter table DescriptionBase_Extension drop constraint FKD5D2B32DF1DDBFAB [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_GEOSCOPE" not found; SQL statement:
 alter table DescriptionBase_GeoScope drop constraint FK3ADD7CD586D04E74 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_GEOSCOPE" not found; SQL statement:
 alter table DescriptionBase_GeoScope drop constraint FK3ADD7CD5D86445CE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_IDENTIFIER" not found; SQL statement:
 alter table DescriptionBase_Identifier drop constraint FKEFE5F37BE12073FF [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_IDENTIFIER" not found; SQL statement:
 alter table DescriptionBase_Identifier drop constraint FKEFE5F37BF1DDBFAB [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_IDENTIFIER_AUD" not found; SQL statement:
 alter table DescriptionBase_Identifier_AUD drop constraint FKDCA5EBCC34869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_MARKER" not found; SQL statement:
 alter table DescriptionBase_Marker drop constraint FK6132140C777265A1 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_MARKER" not found; SQL statement:
 alter table DescriptionBase_Marker drop constraint FK6132140CF1DDBFAB [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table DescriptionBase_OriginalSourceBase drop constraint FKDC75C70F3A6735D9 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table DescriptionBase_OriginalSourceBase drop constraint FKDC75C70FF1DDBFAB [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_REFERENCE" not found; SQL statement:
 alter table DescriptionBase_Reference drop constraint FKC330D6395C601E49 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_REFERENCE" not found; SQL statement:
 alter table DescriptionBase_Reference drop constraint FKC330D639F1DDBFAB [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_RIGHTSINFO" not found; SQL statement:
 alter table DescriptionBase_RightsInfo drop constraint FKFEADDDF7C13F7B21 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_RIGHTSINFO" not found; SQL statement:
 alter table DescriptionBase_RightsInfo drop constraint FKFEADDDF7F1DDBFAB [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_SCOPE" not found; SQL statement:
 alter table DescriptionBase_Scope drop constraint FKB9257C4294E290CA [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONBASE_SCOPE" not found; SQL statement:
 alter table DescriptionBase_Scope drop constraint FKB9257C42D86445CE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE" not found; SQL statement:
 alter table DescriptionElementBase drop constraint FK38FE76714FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE" not found; SQL statement:
 alter table DescriptionElementBase drop constraint FK38FE7671BC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE" not found; SQL statement:
 alter table DescriptionElementBase drop constraint FK38FE76714220AFEB [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE" not found; SQL statement:
 alter table DescriptionElementBase drop constraint FK38FE767134AF0E81 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE" not found; SQL statement:
 alter table DescriptionElementBase drop constraint FK38FE76711C3C3FF7 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE" not found; SQL statement:
 alter table DescriptionElementBase drop constraint FK38FE7671E8D36B00 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE" not found; SQL statement:
 alter table DescriptionElementBase drop constraint FK38FE7671693C1147 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE" not found; SQL statement:
 alter table DescriptionElementBase drop constraint FK38FE76716561D9B1 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE" not found; SQL statement:
 alter table DescriptionElementBase drop constraint FK38FE767110A80E07 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE" not found; SQL statement:
 alter table DescriptionElementBase drop constraint FK38FE76719108D9B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE" not found; SQL statement:
 alter table DescriptionElementBase drop constraint FK38FE76716D0D7A56 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_AUD" not found; SQL statement:
 alter table DescriptionElementBase_AUD drop constraint FKF3803C234869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_ANNOTATION" not found; SQL statement:
 alter table DescriptionElementBase_Annotation drop constraint FK7EE5E5DD1E403E0B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_ANNOTATION" not found; SQL statement:
 alter table DescriptionElementBase_Annotation drop constraint FK7EE5E5DD3B8BB609 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_LANGUAGESTRING" not found; SQL statement:
 alter table DescriptionElementBase_LanguageString drop constraint FKC753F137ACF5F60B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_LANGUAGESTRING" not found; SQL statement:
 alter table DescriptionElementBase_LanguageString drop constraint FKC753F137C6D55834 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_LANGUAGESTRING" not found; SQL statement:
 alter table DescriptionElementBase_LanguageString drop constraint FKC753F137C086B46F [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_MARKER" not found; SQL statement:
 alter table DescriptionElementBase_Marker drop constraint FK1CB715E8777265A1 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_MARKER" not found; SQL statement:
 alter table DescriptionElementBase_Marker drop constraint FK1CB715E83B8BB609 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_MEDIA" not found; SQL statement:
 alter table DescriptionElementBase_Media drop constraint FK21F70076C2C29593 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_MEDIA" not found; SQL statement:
 alter table DescriptionElementBase_Media drop constraint FK21F700763B8BB609 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_MODIFIER" not found; SQL statement:
 alter table DescriptionElementBase_Modifier drop constraint FK97E0D105F4E35BCD [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_MODIFIER" not found; SQL statement:
 alter table DescriptionElementBase_Modifier drop constraint FK97E0D1053B8BB609 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_MODIFYINGTEXT" not found; SQL statement:
 alter table DescriptionElementBase_ModifyingText drop constraint FK522D90C7F05D08D4 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_MODIFYINGTEXT" not found; SQL statement:
 alter table DescriptionElementBase_ModifyingText drop constraint FK522D90C79682414B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_MODIFYINGTEXT" not found; SQL statement:
 alter table DescriptionElementBase_ModifyingText drop constraint FK522D90C73B8BB609 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table DescriptionElementBase_OriginalSourceBase drop constraint FKF41ADEEBA6473CCC [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DESCRIPTIONELEMENTBASE_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table DescriptionElementBase_OriginalSourceBase drop constraint FKF41ADEEB3B8BB609 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DETERMINATIONEVENT" not found; SQL statement:
 alter table DeterminationEvent drop constraint FK1DB24974FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DETERMINATIONEVENT" not found; SQL statement:
 alter table DeterminationEvent drop constraint FK1DB2497BC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DETERMINATIONEVENT" not found; SQL statement:
 alter table DeterminationEvent drop constraint FK1DB24973DA462D5 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DETERMINATIONEVENT" not found; SQL statement:
 alter table DeterminationEvent drop constraint FK1DB24974B251DAD [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DETERMINATIONEVENT" not found; SQL statement:
 alter table DeterminationEvent drop constraint FK1DB2497BD54CF92 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DETERMINATIONEVENT" not found; SQL statement:
 alter table DeterminationEvent drop constraint FK1DB2497AEC8CCAA [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DETERMINATIONEVENT" not found; SQL statement:
 alter table DeterminationEvent drop constraint FK1DB2497DA935185 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DETERMINATIONEVENT_AUD" not found; SQL statement:
 alter table DeterminationEvent_AUD drop constraint FKA0252EE834869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DETERMINATIONEVENT_ANNOTATION" not found; SQL statement:
 alter table DeterminationEvent_Annotation drop constraint FKB74F03F71E403E0B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DETERMINATIONEVENT_ANNOTATION" not found; SQL statement:
 alter table DeterminationEvent_Annotation drop constraint FKB74F03F76BE0BFDA [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DETERMINATIONEVENT_MARKER" not found; SQL statement:
 alter table DeterminationEvent_Marker drop constraint FK5C475102777265A1 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DETERMINATIONEVENT_MARKER" not found; SQL statement:
 alter table DeterminationEvent_Marker drop constraint FK5C4751026BE0BFDA [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DETERMINATIONEVENT_REFERENCE" not found; SQL statement:
 alter table DeterminationEvent_Reference drop constraint FK8FB1ED8355A53F64 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DETERMINATIONEVENT_REFERENCE" not found; SQL statement:
 alter table DeterminationEvent_Reference drop constraint FK8FB1ED836BE0BFDA [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DNAQUALITY" not found; SQL statement:
 alter table DnaQuality drop constraint FK7F4518084FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DNAQUALITY" not found; SQL statement:
 alter table DnaQuality drop constraint FK7F451808BC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DNAQUALITY" not found; SQL statement:
 alter table DnaQuality drop constraint FK7F45180823A844FA [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DNAQUALITY" not found; SQL statement:
 alter table DnaQuality drop constraint FK7F45180887BB6462 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DNAQUALITY" not found; SQL statement:
 alter table DnaQuality drop constraint FK7F451808632EAD0D [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "DNAQUALITY_AUD" not found; SQL statement:
 alter table DnaQuality_AUD drop constraint FKA79601D934869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ENTITYCONSTRAINTVIOLATION" not found; SQL statement:
 alter table EntityConstraintViolation drop constraint FK8970AEC54FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ENTITYCONSTRAINTVIOLATION" not found; SQL statement:
 alter table EntityConstraintViolation drop constraint FK8970AEC57CB10052 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ENTITYVALIDATION" not found; SQL statement:
 alter table EntityValidation drop constraint FKE5A60CDC4FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "EXTENSION" not found; SQL statement:
 alter table Extension drop constraint FK52EF3C1F4FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "EXTENSION" not found; SQL statement:
 alter table Extension drop constraint FK52EF3C1FBC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "EXTENSION" not found; SQL statement:
 alter table Extension drop constraint FK52EF3C1FAD392BD3 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "EXTENSION_AUD" not found; SQL statement:
 alter table Extension_AUD drop constraint FK92D2427034869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURENODE" not found; SQL statement:
 alter table FeatureNode drop constraint FK4CEED9F84FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURENODE" not found; SQL statement:
 alter table FeatureNode drop constraint FK4CEED9F8BC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURENODE" not found; SQL statement:
 alter table FeatureNode drop constraint FK4CEED9F84220AFEB [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURENODE" not found; SQL statement:
 alter table FeatureNode drop constraint FK4CEED9F847C496CB [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURENODE" not found; SQL statement:
 alter table FeatureNode drop constraint FK4CEED9F8E0AD2C59 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURENODE_AUD" not found; SQL statement:
 alter table FeatureNode_AUD drop constraint FK25AD4BC934869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE" not found; SQL statement:
 alter table FeatureTree drop constraint FK4CF19F944FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE" not found; SQL statement:
 alter table FeatureTree drop constraint FK4CF19F94BC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE" not found; SQL statement:
 alter table FeatureTree drop constraint FK4CF19F94B7892921 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_AUD" not found; SQL statement:
 alter table FeatureTree_AUD drop constraint FK355BE36534869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_ANNOTATION" not found; SQL statement:
 alter table FeatureTree_Annotation drop constraint FK5D8B8DA1E403E0B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_ANNOTATION" not found; SQL statement:
 alter table FeatureTree_Annotation drop constraint FK5D8B8DA47C496CB [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_CREDIT" not found; SQL statement:
 alter table FeatureTree_Credit drop constraint FK7536062432D1B9F [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_CREDIT" not found; SQL statement:
 alter table FeatureTree_Credit drop constraint FK7536062447C496CB [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_EXTENSION" not found; SQL statement:
 alter table FeatureTree_Extension drop constraint FKAD1E6D34927DE9DF [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_EXTENSION" not found; SQL statement:
 alter table FeatureTree_Extension drop constraint FKAD1E6D3447C496CB [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_IDENTIFIER" not found; SQL statement:
 alter table FeatureTree_Identifier drop constraint FK2117A54E12073FF [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_IDENTIFIER" not found; SQL statement:
 alter table FeatureTree_Identifier drop constraint FK2117A5447C496CB [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_IDENTIFIER_AUD" not found; SQL statement:
 alter table FeatureTree_Identifier_AUD drop constraint FK4D905E2534869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_MARKER" not found; SQL statement:
 alter table FeatureTree_Marker drop constraint FK855CEF65777265A1 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_MARKER" not found; SQL statement:
 alter table FeatureTree_Marker drop constraint FK855CEF6547C496CB [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table FeatureTree_OriginalSourceBase drop constraint FK13BD64E83A6735D9 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table FeatureTree_OriginalSourceBase drop constraint FK13BD64E847C496CB [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_REPRESENTATION" not found; SQL statement:
 alter table FeatureTree_Representation drop constraint FK8C458F8B31C4747 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_REPRESENTATION" not found; SQL statement:
 alter table FeatureTree_Representation drop constraint FK8C458F847C496CB [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_RIGHTSINFO" not found; SQL statement:
 alter table FeatureTree_RightsInfo drop constraint FK10D964D0C13F7B21 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "FEATURETREE_RIGHTSINFO" not found; SQL statement:
 alter table FeatureTree_RightsInfo drop constraint FK10D964D047C496CB [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "GATHERINGEVENT" not found; SQL statement:
 alter table GatheringEvent drop constraint FK6F1286F34FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "GATHERINGEVENT" not found; SQL statement:
 alter table GatheringEvent drop constraint FK6F1286F3BC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "GATHERINGEVENT" not found; SQL statement:
 alter table GatheringEvent drop constraint FK6F1286F33DA462D5 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "GATHERINGEVENT" not found; SQL statement:
 alter table GatheringEvent drop constraint FK6F1286F3C15704E [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "GATHERINGEVENT" not found; SQL statement:
 alter table GatheringEvent drop constraint FK6F1286F3F55AFD89 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "GATHERINGEVENT" not found; SQL statement:
 alter table GatheringEvent drop constraint FK6F1286F38B455EC6 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "GATHERINGEVENT_AUD" not found; SQL statement:
 alter table GatheringEvent_AUD drop constraint FK3EC034434869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "GATHERINGEVENT_ANNOTATION" not found; SQL statement:
 alter table GatheringEvent_Annotation drop constraint FK76DDD01B1E403E0B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "GATHERINGEVENT_ANNOTATION" not found; SQL statement:
 alter table GatheringEvent_Annotation drop constraint FK76DDD01BF95F225A [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "GATHERINGEVENT_DEFINEDTERMBASE" not found; SQL statement:
 alter table GatheringEvent_DefinedTermBase drop constraint FK69D9A11A7C34B6D6 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "GATHERINGEVENT_DEFINEDTERMBASE" not found; SQL statement:
 alter table GatheringEvent_DefinedTermBase drop constraint FK69D9A11AF95F225A [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "GATHERINGEVENT_MARKER" not found; SQL statement:
 alter table GatheringEvent_Marker drop constraint FK7B49CF26777265A1 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "GATHERINGEVENT_MARKER" not found; SQL statement:
 alter table GatheringEvent_Marker drop constraint FK7B49CF26F95F225A [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "GRANTEDAUTHORITYIMPL" not found; SQL statement:
 alter table GrantedAuthorityImpl drop constraint FKB05CF9284FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HOMOTYPICALGROUP" not found; SQL statement:
 alter table HomotypicalGroup drop constraint FK7DECCC184FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HOMOTYPICALGROUP" not found; SQL statement:
 alter table HomotypicalGroup drop constraint FK7DECCC18BC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HOMOTYPICALGROUP_AUD" not found; SQL statement:
 alter table HomotypicalGroup_AUD drop constraint FKE4252DE934869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HOMOTYPICALGROUP_ANNOTATION" not found; SQL statement:
 alter table HomotypicalGroup_Annotation drop constraint FK7A0351D61E403E0B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HOMOTYPICALGROUP_ANNOTATION" not found; SQL statement:
 alter table HomotypicalGroup_Annotation drop constraint FK7A0351D6BFEAE500 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HOMOTYPICALGROUP_MARKER" not found; SQL statement:
 alter table HomotypicalGroup_Marker drop constraint FK97D36661777265A1 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HOMOTYPICALGROUP_MARKER" not found; SQL statement:
 alter table HomotypicalGroup_Marker drop constraint FK97D36661BFEAE500 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HYBRIDRELATIONSHIP" not found; SQL statement:
 alter table HybridRelationship drop constraint FK9033CE744FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HYBRIDRELATIONSHIP" not found; SQL statement:
 alter table HybridRelationship drop constraint FK9033CE74BC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HYBRIDRELATIONSHIP" not found; SQL statement:
 alter table HybridRelationship drop constraint FK9033CE74AEB7F3BE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HYBRIDRELATIONSHIP" not found; SQL statement:
 alter table HybridRelationship drop constraint FK9033CE749DD57A93 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HYBRIDRELATIONSHIP" not found; SQL statement:
 alter table HybridRelationship drop constraint FK9033CE74AF4F9F62 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HYBRIDRELATIONSHIP" not found; SQL statement:
 alter table HybridRelationship drop constraint FK9033CE7455F241D4 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HYBRIDRELATIONSHIP_AUD" not found; SQL statement:
 alter table HybridRelationship_AUD drop constraint FK9C2BA24534869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HYBRIDRELATIONSHIP_ANNOTATION" not found; SQL statement:
 alter table HybridRelationship_Annotation drop constraint FK2C7E7DFA1E403E0B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HYBRIDRELATIONSHIP_ANNOTATION" not found; SQL statement:
 alter table HybridRelationship_Annotation drop constraint FK2C7E7DFA59832240 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HYBRIDRELATIONSHIP_MARKER" not found; SQL statement:
 alter table HybridRelationship_Marker drop constraint FKCEF24485777265A1 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "HYBRIDRELATIONSHIP_MARKER" not found; SQL statement:
 alter table HybridRelationship_Marker drop constraint FKCEF2448559832240 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "IDENTIFIER" not found; SQL statement:
 alter table Identifier drop constraint FK165A88C94FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "IDENTIFIER" not found; SQL statement:
 alter table Identifier drop constraint FK165A88C9BC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "IDENTIFIER" not found; SQL statement:
 alter table Identifier drop constraint FK165A88C9E67FC44F [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "IDENTIFIER_AUD" not found; SQL statement:
 alter table Identifier_AUD drop constraint FKE1132A1A34869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "IDENTIFIER_ANNOTATION" not found; SQL statement:
 alter table Identifier_Annotation drop constraint FK12BB6C851E403E0B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "IDENTIFIER_ANNOTATION" not found; SQL statement:
 alter table Identifier_Annotation drop constraint FK12BB6C85E640A3E0 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "IDENTIFIER_ANNOTATION_AUD" not found; SQL statement:
 alter table Identifier_Annotation_AUD drop constraint FK36A3CFD634869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "IDENTIFIER_MARKER" not found; SQL statement:
 alter table Identifier_Marker drop constraint FK4A6A3090777265A1 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "IDENTIFIER_MARKER" not found; SQL statement:
 alter table Identifier_Marker drop constraint FK4A6A3090E640A3E0 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "IDENTIFIER_MARKER_AUD" not found; SQL statement:
 alter table Identifier_Marker_AUD drop constraint FKB1EB966134869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "INDIVIDUALASSOCIATION_LANGUAGESTRING" not found; SQL statement:
 alter table IndividualAssociation_LanguageString drop constraint FKB5C75EC02BEBA58D [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "INDIVIDUALASSOCIATION_LANGUAGESTRING" not found; SQL statement:
 alter table IndividualAssociation_LanguageString drop constraint FKB5C75EC028459272 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "INDIVIDUALASSOCIATION_LANGUAGESTRING" not found; SQL statement:
 alter table IndividualAssociation_LanguageString drop constraint FKB5C75EC084FF3EDF [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "INSTITUTIONALMEMBERSHIP" not found; SQL statement:
 alter table InstitutionalMembership drop constraint FK3C8E1FF94FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "INSTITUTIONALMEMBERSHIP" not found; SQL statement:
 alter table InstitutionalMembership drop constraint FK3C8E1FF9BC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "INSTITUTIONALMEMBERSHIP" not found; SQL statement:
 alter table InstitutionalMembership drop constraint FK3C8E1FF916B9CA77 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "INSTITUTIONALMEMBERSHIP" not found; SQL statement:
 alter table InstitutionalMembership drop constraint FK3C8E1FF9AAC1B820 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "INSTITUTIONALMEMBERSHIP_AUD" not found; SQL statement:
 alter table InstitutionalMembership_AUD drop constraint FK847A94A34869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "INTEXTREFERENCE" not found; SQL statement:
 alter table IntextReference drop constraint FK861B8B794FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "INTEXTREFERENCE" not found; SQL statement:
 alter table IntextReference drop constraint FK861B8B79BC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "INTEXTREFERENCE" not found; SQL statement:
 alter table IntextReference drop constraint FK861B8B79F7976FC5 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "INTEXTREFERENCE" not found; SQL statement:
 alter table IntextReference drop constraint FK861B8B79994CCE20 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "INTEXTREFERENCE" not found; SQL statement:
 alter table IntextReference drop constraint FK861B8B7937998500 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "INTEXTREFERENCE" not found; SQL statement:
 alter table IntextReference drop constraint FK861B8B79C2C29593 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "INTEXTREFERENCE" not found; SQL statement:
 alter table IntextReference drop constraint FK861B8B795CB60F3B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "INTEXTREFERENCE" not found; SQL statement:
 alter table IntextReference drop constraint FK861B8B798D0FB4DA [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "INTEXTREFERENCE" not found; SQL statement:
 alter table IntextReference drop constraint FK861B8B79AEC8CCAA [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "INTEXTREFERENCE" not found; SQL statement:
 alter table IntextReference drop constraint FK861B8B79DA935185 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "INTEXTREFERENCE" not found; SQL statement:
 alter table IntextReference drop constraint FK861B8B79EE6B45A6 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "INTEXTREFERENCE_AUD" not found; SQL statement:
 alter table IntextReference_AUD drop constraint FKAE3354CA34869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "KEYSTATEMENT" not found; SQL statement:
 alter table KeyStatement drop constraint FK7125B9F04FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "KEYSTATEMENT" not found; SQL statement:
 alter table KeyStatement drop constraint FK7125B9F0BC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "KEYSTATEMENT_AUD" not found; SQL statement:
 alter table KeyStatement_AUD drop constraint FK93036FC134869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "KEYSTATEMENT_LANGUAGESTRING" not found; SQL statement:
 alter table KeyStatement_LanguageString drop constraint FK70BB5FD89C782795 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "KEYSTATEMENT_LANGUAGESTRING" not found; SQL statement:
 alter table KeyStatement_LanguageString drop constraint FK70BB5FD8DA0C376A [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "KEYSTATEMENT_LANGUAGESTRING" not found; SQL statement:
 alter table KeyStatement_LanguageString drop constraint FK70BB5FD8AAA67049 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "LSIDAUTHORITY" not found; SQL statement:
 alter table LSIDAuthority drop constraint FK759DB8814FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "LSIDAUTHORITY_NAMESPACES" not found; SQL statement:
 alter table LSIDAuthority_namespaces drop constraint FKB04948F64FFCFD94 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "LANGUAGESTRING" not found; SQL statement:
 alter table LanguageString drop constraint FKB5FDC9A94FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "LANGUAGESTRING" not found; SQL statement:
 alter table LanguageString drop constraint FKB5FDC9A9BC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "LANGUAGESTRING" not found; SQL statement:
 alter table LanguageString drop constraint FKB5FDC9A9E8D36B00 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "LANGUAGESTRING_AUD" not found; SQL statement:
 alter table LanguageString_AUD drop constraint FK896AFAFA34869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "LANGUAGESTRING_ANNOTATION" not found; SQL statement:
 alter table LanguageString_Annotation drop constraint FK8400DFA51E403E0B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "LANGUAGESTRING_ANNOTATION" not found; SQL statement:
 alter table LanguageString_Annotation drop constraint FK8400DFA537998500 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "LANGUAGESTRING_MARKER" not found; SQL statement:
 alter table LanguageString_Marker drop constraint FK8DA633B0777265A1 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "LANGUAGESTRING_MARKER" not found; SQL statement:
 alter table LanguageString_Marker drop constraint FK8DA633B037998500 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MARKER" not found; SQL statement:
 alter table Marker drop constraint FK88F1805A4FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MARKER" not found; SQL statement:
 alter table Marker drop constraint FK88F1805ABC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MARKER" not found; SQL statement:
 alter table Marker drop constraint FK88F1805AD64DC020 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MARKER_AUD" not found; SQL statement:
 alter table Marker_AUD drop constraint FKB951F12B34869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MATERIALORMETHODEVENT" not found; SQL statement:
 alter table MaterialOrMethodEvent drop constraint FK458A264F4FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MATERIALORMETHODEVENT" not found; SQL statement:
 alter table MaterialOrMethodEvent drop constraint FK458A264FBC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MATERIALORMETHODEVENT" not found; SQL statement:
 alter table MaterialOrMethodEvent drop constraint FK458A264F3DA462D5 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MATERIALORMETHODEVENT" not found; SQL statement:
 alter table MaterialOrMethodEvent drop constraint FK458A264F14D2C695 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MATERIALORMETHODEVENT" not found; SQL statement:
 alter table MaterialOrMethodEvent drop constraint FK458A264F3781DA30 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MATERIALORMETHODEVENT" not found; SQL statement:
 alter table MaterialOrMethodEvent drop constraint FK458A264F1600EAB3 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MATERIALORMETHODEVENT" not found; SQL statement:
 alter table MaterialOrMethodEvent drop constraint FK458A264F9A129634 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MATERIALORMETHODEVENT_AUD" not found; SQL statement:
 alter table MaterialOrMethodEvent_AUD drop constraint FK8C8C94A034869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MATERIALORMETHODEVENT_ANNOTATION" not found; SQL statement:
 alter table MaterialOrMethodEvent_Annotation drop constraint FKD9943F3F1E403E0B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MATERIALORMETHODEVENT_ANNOTATION" not found; SQL statement:
 alter table MaterialOrMethodEvent_Annotation drop constraint FKD9943F3F2F50355A [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MATERIALORMETHODEVENT_MARKER" not found; SQL statement:
 alter table MaterialOrMethodEvent_Marker drop constraint FKF0BD704A777265A1 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MATERIALORMETHODEVENT_MARKER" not found; SQL statement:
 alter table MaterialOrMethodEvent_Marker drop constraint FKF0BD704A2F50355A [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA" not found; SQL statement:
 alter table Media drop constraint FK46C7FC44FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA" not found; SQL statement:
 alter table Media drop constraint FK46C7FC4BC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA" not found; SQL statement:
 alter table Media drop constraint FK46C7FC4C2445443 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIAKEY_NAMEDAREA" not found; SQL statement:
 alter table MediaKey_NamedArea drop constraint FK31E7D4023FF8E7B2 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIAKEY_NAMEDAREA" not found; SQL statement:
 alter table MediaKey_NamedArea drop constraint FK31E7D402BE59D760 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIAKEY_SCOPE" not found; SQL statement:
 alter table MediaKey_Scope drop constraint FKBFFEE8F05431B96E [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIAKEY_SCOPE" not found; SQL statement:
 alter table MediaKey_Scope drop constraint FKBFFEE8F0BE59D760 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIAKEY_TAXON" not found; SQL statement:
 alter table MediaKey_Taxon drop constraint FKC00C3966DE9A3E39 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIAKEY_TAXON" not found; SQL statement:
 alter table MediaKey_Taxon drop constraint FKC00C3966815C7E9 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIAREPRESENTATION" not found; SQL statement:
 alter table MediaRepresentation drop constraint FK1966BDB14FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIAREPRESENTATION" not found; SQL statement:
 alter table MediaRepresentation drop constraint FK1966BDB1BC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIAREPRESENTATION" not found; SQL statement:
 alter table MediaRepresentation drop constraint FK1966BDB1C2C29593 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIAREPRESENTATIONPART" not found; SQL statement:
 alter table MediaRepresentationPart drop constraint FK67A455444FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIAREPRESENTATIONPART" not found; SQL statement:
 alter table MediaRepresentationPart drop constraint FK67A45544BC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIAREPRESENTATIONPART" not found; SQL statement:
 alter table MediaRepresentationPart drop constraint FK67A45544E3818E37 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIAREPRESENTATIONPART_AUD" not found; SQL statement:
 alter table MediaRepresentationPart_AUD drop constraint FKA75C411534869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIAREPRESENTATION_AUD" not found; SQL statement:
 alter table MediaRepresentation_AUD drop constraint FK67AAAB0234869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_AUD" not found; SQL statement:
 alter table Media_AUD drop constraint FKF70B2B9534869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_ANNOTATION" not found; SQL statement:
 alter table Media_Annotation drop constraint FKA020DAAA1E403E0B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_ANNOTATION" not found; SQL statement:
 alter table Media_Annotation drop constraint FKA020DAAAC2C29593 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_CREDIT" not found; SQL statement:
 alter table Media_Credit drop constraint FKC1F78FF432D1B9F [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_CREDIT" not found; SQL statement:
 alter table Media_Credit drop constraint FKC1F78FF4C2C29593 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_DESCRIPTION" not found; SQL statement:
 alter table Media_Description drop constraint FK368283E12BEBA58D [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_DESCRIPTION" not found; SQL statement:
 alter table Media_Description drop constraint FK368283E128459272 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_DESCRIPTION" not found; SQL statement:
 alter table Media_Description drop constraint FK368283E1C2C29593 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_EXTENSION" not found; SQL statement:
 alter table Media_Extension drop constraint FKDB62D164927DE9DF [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_EXTENSION" not found; SQL statement:
 alter table Media_Extension drop constraint FKDB62D164C2C29593 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_IDENTIFIER" not found; SQL statement:
 alter table Media_Identifier drop constraint FK9C599C24E12073FF [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_IDENTIFIER" not found; SQL statement:
 alter table Media_Identifier drop constraint FK9C599C24C2C29593 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_IDENTIFIER_AUD" not found; SQL statement:
 alter table Media_Identifier_AUD drop constraint FK605317F534869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_LANGUAGESTRING" not found; SQL statement:
 alter table Media_LanguageString drop constraint FK353DB784A1CA19B1 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_LANGUAGESTRING" not found; SQL statement:
 alter table Media_LanguageString drop constraint FK353DB784A0A6EDCE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_LANGUAGESTRING" not found; SQL statement:
 alter table Media_LanguageString drop constraint FK353DB784C2C29593 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_MARKER" not found; SQL statement:
 alter table Media_Marker drop constraint FKD21E7935777265A1 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_MARKER" not found; SQL statement:
 alter table Media_Marker drop constraint FKD21E7935C2C29593 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table Media_OriginalSourceBase drop constraint FK2FEEB6B83A6735D9 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table Media_OriginalSourceBase drop constraint FK2FEEB6B8C2C29593 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_REPRESENTATION" not found; SQL statement:
 alter table Media_Representation drop constraint FK1B8712C88F6CABE6 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_REPRESENTATION" not found; SQL statement:
 alter table Media_Representation drop constraint FK1B8712C8BE59D760 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_RIGHTSINFO" not found; SQL statement:
 alter table Media_RightsInfo drop constraint FKAB2186A0C13F7B21 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_RIGHTSINFO" not found; SQL statement:
 alter table Media_RightsInfo drop constraint FKAB2186A0C2C29593 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_SEQUENCE" not found; SQL statement:
 alter table Media_Sequence drop constraint FK61D09FCF29B4761 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_SEQUENCE" not found; SQL statement:
 alter table Media_Sequence drop constraint FK61D09FC3282B64 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_TAXONBASE" not found; SQL statement:
 alter table Media_TaxonBase drop constraint FK1ABD49E07C3D0017 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MEDIA_TAXONBASE" not found; SQL statement:
 alter table Media_TaxonBase drop constraint FK1ABD49E0BE59D760 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MULTIACCESSKEY_NAMEDAREA" not found; SQL statement:
 alter table MultiAccessKey_NamedArea drop constraint FK1F5A74893FF8E7B2 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MULTIACCESSKEY_NAMEDAREA" not found; SQL statement:
 alter table MultiAccessKey_NamedArea drop constraint FK1F5A7489B4555A9A [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MULTIACCESSKEY_SCOPE" not found; SQL statement:
 alter table MultiAccessKey_Scope drop constraint FKCC6CE4F75431B96E [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MULTIACCESSKEY_SCOPE" not found; SQL statement:
 alter table MultiAccessKey_Scope drop constraint FKCC6CE4F7B4555A9A [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MULTIACCESSKEY_TAXON" not found; SQL statement:
 alter table MultiAccessKey_Taxon drop constraint FKCC7A356DDE9A3E39 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "MULTIACCESSKEY_TAXON" not found; SQL statement:
 alter table MultiAccessKey_Taxon drop constraint FKCC7A356DB64A7B29 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NAMERELATIONSHIP" not found; SQL statement:
 alter table NameRelationship drop constraint FK5E510834FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NAMERELATIONSHIP" not found; SQL statement:
 alter table NameRelationship drop constraint FK5E51083BC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NAMERELATIONSHIP" not found; SQL statement:
 alter table NameRelationship drop constraint FK5E51083AEB7F3BE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NAMERELATIONSHIP" not found; SQL statement:
 alter table NameRelationship drop constraint FK5E5108316CDFF85 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NAMERELATIONSHIP" not found; SQL statement:
 alter table NameRelationship drop constraint FK5E5108328482454 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NAMERELATIONSHIP" not found; SQL statement:
 alter table NameRelationship drop constraint FK5E51083AF619DE3 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NAMERELATIONSHIP_AUD" not found; SQL statement:
 alter table NameRelationship_AUD drop constraint FK743F44D434869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NAMERELATIONSHIP_ANNOTATION" not found; SQL statement:
 alter table NameRelationship_Annotation drop constraint FK2E38AC8B1E403E0B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NAMERELATIONSHIP_ANNOTATION" not found; SQL statement:
 alter table NameRelationship_Annotation drop constraint FK2E38AC8B7B4CB560 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NAMERELATIONSHIP_MARKER" not found; SQL statement:
 alter table NameRelationship_Marker drop constraint FKE3E46396777265A1 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NAMERELATIONSHIP_MARKER" not found; SQL statement:
 alter table NameRelationship_Marker drop constraint FKE3E463967B4CB560 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NOMENCLATURALSTATUS" not found; SQL statement:
 alter table NomenclaturalStatus drop constraint FK1FFEC88B4FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NOMENCLATURALSTATUS" not found; SQL statement:
 alter table NomenclaturalStatus drop constraint FK1FFEC88BBC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NOMENCLATURALSTATUS" not found; SQL statement:
 alter table NomenclaturalStatus drop constraint FK1FFEC88BAEB7F3BE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NOMENCLATURALSTATUS" not found; SQL statement:
 alter table NomenclaturalStatus drop constraint FK1FFEC88B7029BD9F [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NOMENCLATURALSTATUS_AUD" not found; SQL statement:
 alter table NomenclaturalStatus_AUD drop constraint FKFB2DB8DC34869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NOMENCLATURALSTATUS_ANNOTATION" not found; SQL statement:
 alter table NomenclaturalStatus_Annotation drop constraint FKE6E91F831E403E0B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NOMENCLATURALSTATUS_ANNOTATION" not found; SQL statement:
 alter table NomenclaturalStatus_Annotation drop constraint FKE6E91F838D2CB1D4 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NOMENCLATURALSTATUS_MARKER" not found; SQL statement:
 alter table NomenclaturalStatus_Marker drop constraint FK2F5128E777265A1 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "NOMENCLATURALSTATUS_MARKER" not found; SQL statement:
 alter table NomenclaturalStatus_Marker drop constraint FK2F5128E8D2CB1D4 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ORIGINALSOURCEBASE" not found; SQL statement:
 alter table OriginalSourceBase drop constraint FK505F2E5D4FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ORIGINALSOURCEBASE" not found; SQL statement:
 alter table OriginalSourceBase drop constraint FK505F2E5DBC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ORIGINALSOURCEBASE" not found; SQL statement:
 alter table OriginalSourceBase drop constraint FK505F2E5DAEB7F3BE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ORIGINALSOURCEBASE" not found; SQL statement:
 alter table OriginalSourceBase drop constraint FK505F2E5D966B96B2 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ORIGINALSOURCEBASE_AUD" not found; SQL statement:
 alter table OriginalSourceBase_AUD drop constraint FK9662E5AE34869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ORIGINALSOURCEBASE_ANNOTATION" not found; SQL statement:
 alter table OriginalSourceBase_Annotation drop constraint FK208142711E403E0B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ORIGINALSOURCEBASE_ANNOTATION" not found; SQL statement:
 alter table OriginalSourceBase_Annotation drop constraint FK20814271B029DDA0 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ORIGINALSOURCEBASE_MARKER" not found; SQL statement:
 alter table OriginalSourceBase_Marker drop constraint FKB3FFDC7C777265A1 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "ORIGINALSOURCEBASE_MARKER" not found; SQL statement:
 alter table OriginalSourceBase_Marker drop constraint FKB3FFDC7CB029DDA0 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "PERMISSIONGROUP" not found; SQL statement:
 alter table PermissionGroup drop constraint FK629941D04FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "PERMISSIONGROUP_GRANTEDAUTHORITYIMPL" not found; SQL statement:
 alter table PermissionGroup_GrantedAuthorityImpl drop constraint FK53114371857F6C2 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "PERMISSIONGROUP_GRANTEDAUTHORITYIMPL" not found; SQL statement:
 alter table PermissionGroup_GrantedAuthorityImpl drop constraint FK5311437CA0971A3 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY" not found; SQL statement:
 alter table PolytomousKey drop constraint FKA9E6B1384FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY" not found; SQL statement:
 alter table PolytomousKey drop constraint FKA9E6B138BC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY" not found; SQL statement:
 alter table PolytomousKey drop constraint FKA9E6B138576595C3 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEYNODE" not found; SQL statement:
 alter table PolytomousKeyNode drop constraint FK860775A4FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEYNODE" not found; SQL statement:
 alter table PolytomousKeyNode drop constraint FK860775ABC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEYNODE" not found; SQL statement:
 alter table PolytomousKeyNode drop constraint FK860775A4220AFEB [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEYNODE" not found; SQL statement:
 alter table PolytomousKeyNode drop constraint FK860775AC73A7584 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEYNODE" not found; SQL statement:
 alter table PolytomousKeyNode drop constraint FK860775A4FEE4393 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEYNODE" not found; SQL statement:
 alter table PolytomousKeyNode drop constraint FK860775A808998FB [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEYNODE" not found; SQL statement:
 alter table PolytomousKeyNode drop constraint FK860775A9D3C2E93 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEYNODE" not found; SQL statement:
 alter table PolytomousKeyNode drop constraint FK860775A4382686A [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEYNODE" not found; SQL statement:
 alter table PolytomousKeyNode drop constraint FK860775A1C0483C4 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEYNODE" not found; SQL statement:
 alter table PolytomousKeyNode drop constraint FK860775ADE9A3E39 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEYNODE_AUD" not found; SQL statement:
 alter table PolytomousKeyNode_AUD drop constraint FK6A6D682B34869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEYNODE_LANGUAGESTRING" not found; SQL statement:
 alter table PolytomousKeyNode_LanguageString drop constraint FK5574E12EF05D08D4 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEYNODE_LANGUAGESTRING" not found; SQL statement:
 alter table PolytomousKeyNode_LanguageString drop constraint FK5574E12E9682414B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEYNODE_LANGUAGESTRING" not found; SQL statement:
 alter table PolytomousKeyNode_LanguageString drop constraint FK5574E12EF135C42B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_AUD" not found; SQL statement:
 alter table PolytomousKey_AUD drop constraint FK867830934869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_ANNOTATION" not found; SQL statement:
 alter table PolytomousKey_Annotation drop constraint FK278CF8B61E403E0B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_ANNOTATION" not found; SQL statement:
 alter table PolytomousKey_Annotation drop constraint FK278CF8B689D97CB [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_CREDIT" not found; SQL statement:
 alter table PolytomousKey_Credit drop constraint FKADC940032D1B9F [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_CREDIT" not found; SQL statement:
 alter table PolytomousKey_Credit drop constraint FKADC940089D97CB [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_EXTENSION" not found; SQL statement:
 alter table PolytomousKey_Extension drop constraint FKAE34C1D8927DE9DF [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_EXTENSION" not found; SQL statement:
 alter table PolytomousKey_Extension drop constraint FKAE34C1D889D97CB [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_IDENTIFIER" not found; SQL statement:
 alter table PolytomousKey_Identifier drop constraint FK23C5BA30E12073FF [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_IDENTIFIER" not found; SQL statement:
 alter table PolytomousKey_Identifier drop constraint FK23C5BA3089D97CB [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_IDENTIFIER_AUD" not found; SQL statement:
 alter table PolytomousKey_Identifier_AUD drop constraint FKF929500134869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_MARKER" not found; SQL statement:
 alter table PolytomousKey_Marker drop constraint FK1B037D41777265A1 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_MARKER" not found; SQL statement:
 alter table PolytomousKey_Marker drop constraint FK1B037D4189D97CB [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_NAMEDAREA" not found; SQL statement:
 alter table PolytomousKey_NamedArea drop constraint FK1C727CFF3FF8E7B2 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_NAMEDAREA" not found; SQL statement:
 alter table PolytomousKey_NamedArea drop constraint FK1C727CFF89D97CB [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table PolytomousKey_OriginalSourceBase drop constraint FK839208C43A6735D9 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table PolytomousKey_OriginalSourceBase drop constraint FK839208C489D97CB [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_RIGHTSINFO" not found; SQL statement:
 alter table PolytomousKey_RightsInfo drop constraint FK328DA4ACC13F7B21 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_RIGHTSINFO" not found; SQL statement:
 alter table PolytomousKey_RightsInfo drop constraint FK328DA4AC89D97CB [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_SCOPE" not found; SQL statement:
 alter table PolytomousKey_Scope drop constraint FK8D97986D5431B96E [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_SCOPE" not found; SQL statement:
 alter table PolytomousKey_Scope drop constraint FK8D97986D89D97CB [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_TAXON" not found; SQL statement:
 alter table PolytomousKey_Taxon drop constraint FK8DA4E8E3DE9A3E39 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_TAXON" not found; SQL statement:
 alter table PolytomousKey_Taxon drop constraint FK8DA4E8E389D97CB [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_TAXONBASE" not found; SQL statement:
 alter table PolytomousKey_TaxonBase drop constraint FKED8F3A547C3D0017 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "POLYTOMOUSKEY_TAXONBASE" not found; SQL statement:
 alter table PolytomousKey_TaxonBase drop constraint FKED8F3A5489D97CB [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "PRIMER" not found; SQL statement:
 alter table Primer drop constraint FK8EFB89F34FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "PRIMER" not found; SQL statement:
 alter table Primer drop constraint FK8EFB89F3BC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "PRIMER" not found; SQL statement:
 alter table Primer drop constraint FK8EFB89F36D2CE418 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "PRIMER" not found; SQL statement:
 alter table Primer drop constraint FK8EFB89F3D0374392 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "PRIMER_AUD" not found; SQL statement:
 alter table Primer_AUD drop constraint FK319B864434869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "PRIMER_ANNOTATION" not found; SQL statement:
 alter table Primer_Annotation drop constraint FK9044ED1B1E403E0B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "PRIMER_ANNOTATION" not found; SQL statement:
 alter table Primer_Annotation drop constraint FK9044ED1B48BD1F55 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "PRIMER_MARKER" not found; SQL statement:
 alter table Primer_Marker drop constraint FKF6C76C26777265A1 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "PRIMER_MARKER" not found; SQL statement:
 alter table Primer_Marker drop constraint FKF6C76C2648BD1F55 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE" not found; SQL statement:
 alter table Reference drop constraint FK404D5F2B4FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE" not found; SQL statement:
 alter table Reference drop constraint FK404D5F2BBC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE" not found; SQL statement:
 alter table Reference drop constraint FK404D5F2BD741CE1F [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE" not found; SQL statement:
 alter table Reference drop constraint FK404D5F2BAD54327F [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE" not found; SQL statement:
 alter table Reference drop constraint FK404D5F2B403E17F4 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE" not found; SQL statement:
 alter table Reference drop constraint FK404D5F2BAEC3B8B8 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_AUD" not found; SQL statement:
 alter table Reference_AUD drop constraint FK8F0FFF7C34869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_ANNOTATION" not found; SQL statement:
 alter table Reference_Annotation drop constraint FKFC824E31E403E0B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_ANNOTATION" not found; SQL statement:
 alter table Reference_Annotation drop constraint FKFC824E38D0FB4DA [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_CREDIT" not found; SQL statement:
 alter table Reference_Credit drop constraint FK5BC6DEAD32D1B9F [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_CREDIT" not found; SQL statement:
 alter table Reference_Credit drop constraint FK5BC6DEAD8D0FB4DA [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_EXTENSION" not found; SQL statement:
 alter table Reference_Extension drop constraint FKDEFCDC0B927DE9DF [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_EXTENSION" not found; SQL statement:
 alter table Reference_Extension drop constraint FKDEFCDC0B8D0FB4DA [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_IDENTIFIER" not found; SQL statement:
 alter table Reference_Identifier drop constraint FKC00E65DE12073FF [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_IDENTIFIER" not found; SQL statement:
 alter table Reference_Identifier drop constraint FKC00E65D8D0FB4DA [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_IDENTIFIER_AUD" not found; SQL statement:
 alter table Reference_Identifier_AUD drop constraint FKBA689DAE34869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_MARKER" not found; SQL statement:
 alter table Reference_Marker drop constraint FK6BEDC7EE777265A1 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_MARKER" not found; SQL statement:
 alter table Reference_Marker drop constraint FK6BEDC7EE8D0FB4DA [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_MEDIA" not found; SQL statement:
 alter table Reference_Media drop constraint FKBBEF5B0C2C29593 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_MEDIA" not found; SQL statement:
 alter table Reference_Media drop constraint FKBBEF5B08D0FB4DA [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table Reference_OriginalSourceBase drop constraint FKD3E8B7F13A6735D9 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table Reference_OriginalSourceBase drop constraint FKD3E8B7F18D0FB4DA [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_RIGHTSINFO" not found; SQL statement:
 alter table Reference_RightsInfo drop constraint FK1AC8D0D9C13F7B21 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REFERENCE_RIGHTSINFO" not found; SQL statement:
 alter table Reference_RightsInfo drop constraint FK1AC8D0D98D0FB4DA [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "RELATIONSHIPTERMBASE_INVERSEREPRESENTATION" not found; SQL statement:
 alter table RelationshipTermBase_inverseRepresentation drop constraint FK98592F33473FB677 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "RELATIONSHIPTERMBASE_INVERSEREPRESENTATION" not found; SQL statement:
 alter table RelationshipTermBase_inverseRepresentation drop constraint FK98592F33ECEEF4AF [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REPRESENTATION" not found; SQL statement:
 alter table Representation drop constraint FK9C4724ED4FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REPRESENTATION" not found; SQL statement:
 alter table Representation drop constraint FK9C4724EDBC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REPRESENTATION" not found; SQL statement:
 alter table Representation drop constraint FK9C4724EDE8D36B00 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REPRESENTATION_AUD" not found; SQL statement:
 alter table Representation_AUD drop constraint FK294D143E34869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REPRESENTATION_ANNOTATION" not found; SQL statement:
 alter table Representation_Annotation drop constraint FK371091E11E403E0B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REPRESENTATION_ANNOTATION" not found; SQL statement:
 alter table Representation_Annotation drop constraint FK371091E147E8AE60 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REPRESENTATION_MARKER" not found; SQL statement:
 alter table Representation_Marker drop constraint FK560063EC777265A1 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "REPRESENTATION_MARKER" not found; SQL statement:
 alter table Representation_Marker drop constraint FK560063EC47E8AE60 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "RIGHTSINFO" not found; SQL statement:
 alter table RightsInfo drop constraint FK252273454FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "RIGHTSINFO" not found; SQL statement:
 alter table RightsInfo drop constraint FK25227345BC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "RIGHTSINFO" not found; SQL statement:
 alter table RightsInfo drop constraint FK25227345E8D36B00 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "RIGHTSINFO" not found; SQL statement:
 alter table RightsInfo drop constraint FK25227345F7976FC5 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "RIGHTSINFO" not found; SQL statement:
 alter table RightsInfo drop constraint FK25227345E6D2D338 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "RIGHTSINFO_AUD" not found; SQL statement:
 alter table RightsInfo_AUD drop constraint FK1CA9769634869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "RIGHTSINFO_ANNOTATION" not found; SQL statement:
 alter table RightsInfo_Annotation drop constraint FKECC95C891E403E0B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "RIGHTSINFO_ANNOTATION" not found; SQL statement:
 alter table RightsInfo_Annotation drop constraint FKECC95C89EFE62333 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "RIGHTSINFO_MARKER" not found; SQL statement:
 alter table RightsInfo_Marker drop constraint FK81D8C294777265A1 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "RIGHTSINFO_MARKER" not found; SQL statement:
 alter table RightsInfo_Marker drop constraint FK81D8C294EFE62333 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SEQUENCE" not found; SQL statement:
 alter table Sequence drop constraint FK544ADBE14FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SEQUENCE" not found; SQL statement:
 alter table Sequence drop constraint FK544ADBE1BC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SEQUENCE" not found; SQL statement:
 alter table Sequence drop constraint FK544ADBE19F65E72B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SEQUENCE" not found; SQL statement:
 alter table Sequence drop constraint FK544ADBE16D2CE418 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SEQUENCE" not found; SQL statement:
 alter table Sequence drop constraint FK544ADBE1E671A9DF [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SEQUENCE_AUD" not found; SQL statement:
 alter table Sequence_AUD drop constraint FK39F4313234869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SEQUENCE_ANNOTATION" not found; SQL statement:
 alter table Sequence_Annotation drop constraint FK1010BA6D1E403E0B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SEQUENCE_ANNOTATION" not found; SQL statement:
 alter table Sequence_Annotation drop constraint FK1010BA6DD57FFDD5 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SEQUENCE_MARKER" not found; SQL statement:
 alter table Sequence_Marker drop constraint FK3D22B278777265A1 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SEQUENCE_MARKER" not found; SQL statement:
 alter table Sequence_Marker drop constraint FK3D22B278D57FFDD5 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SEQUENCE_REFERENCE" not found; SQL statement:
 alter table Sequence_Reference drop constraint FK6944904D1DDDC219 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SEQUENCE_REFERENCE" not found; SQL statement:
 alter table Sequence_Reference drop constraint FK6944904DD57FFDD5 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SINGLEREAD" not found; SQL statement:
 alter table SingleRead drop constraint FKAD45CA1E4FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SINGLEREAD" not found; SQL statement:
 alter table SingleRead drop constraint FKAD45CA1EBC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SINGLEREAD" not found; SQL statement:
 alter table SingleRead drop constraint FKAD45CA1E3DA462D5 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SINGLEREAD" not found; SQL statement:
 alter table SingleRead drop constraint FKAD45CA1ED320A65F [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SINGLEREAD" not found; SQL statement:
 alter table SingleRead drop constraint FKAD45CA1EE0EBCFFE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SINGLEREAD" not found; SQL statement:
 alter table SingleRead drop constraint FKAD45CA1E55DDFE96 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SINGLEREAD" not found; SQL statement:
 alter table SingleRead drop constraint FKAD45CA1E48BD1F55 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SINGLEREADALIGNMENT" not found; SQL statement:
 alter table SingleReadAlignment drop constraint FKE50A79654FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SINGLEREADALIGNMENT" not found; SQL statement:
 alter table SingleReadAlignment drop constraint FKE50A7965BC5DA539 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SINGLEREADALIGNMENT" not found; SQL statement:
 alter table SingleReadAlignment drop constraint FKE50A7965ECE53A6A [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SINGLEREADALIGNMENT" not found; SQL statement:
 alter table SingleReadAlignment drop constraint FKE50A79653A5A5E15 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SINGLEREADALIGNMENT_AUD" not found; SQL statement:
 alter table SingleReadAlignment_AUD drop constraint FKFEE16CB634869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SINGLEREAD_AUD" not found; SQL statement:
 alter table SingleRead_AUD drop constraint FKA323B8EF34869AAE [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SINGLEREAD_ANNOTATION" not found; SQL statement:
 alter table SingleRead_Annotation drop constraint FK33E974101E403E0B [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SINGLEREAD_ANNOTATION" not found; SQL statement:
 alter table SingleRead_Annotation drop constraint FK33E974103A5A5E15 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SINGLEREAD_MARKER" not found; SQL statement:
 alter table SingleRead_Marker drop constraint FKCF47B59B777265A1 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SINGLEREAD_MARKER" not found; SQL statement:
 alter table SingleRead_Marker drop constraint FKCF47B59B3A5A5E15 [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE" not found; SQL statement:
 alter table SpecimenOrObservationBase drop constraint FK21CA32724FF2DB2C [42102-170]
-06-08 17:36:40 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE" not found; SQL statement:
 alter table SpecimenOrObservationBase drop constraint FK21CA3272BC5DA539 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE" not found; SQL statement:
 alter table SpecimenOrObservationBase drop constraint FK21CA3272F53E6AFA [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE" not found; SQL statement:
 alter table SpecimenOrObservationBase drop constraint FK21CA32728C35BD07 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE" not found; SQL statement:
 alter table SpecimenOrObservationBase drop constraint FK21CA3272E35D77A3 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE" not found; SQL statement:
 alter table SpecimenOrObservationBase drop constraint FK21CA3272EB62BE9A [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE" not found; SQL statement:
 alter table SpecimenOrObservationBase drop constraint FK21CA3272156CF96 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE" not found; SQL statement:
 alter table SpecimenOrObservationBase drop constraint FK21CA3272C8505DB [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE" not found; SQL statement:
 alter table SpecimenOrObservationBase drop constraint FK21CA32727CC340C5 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE" not found; SQL statement:
 alter table SpecimenOrObservationBase drop constraint FK21CA327295CC5995 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE" not found; SQL statement:
 alter table SpecimenOrObservationBase drop constraint FK21CA32724FF2F98B [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE" not found; SQL statement:
 alter table SpecimenOrObservationBase drop constraint FK21CA3272F95F225A [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE" not found; SQL statement:
 alter table SpecimenOrObservationBase drop constraint FK21CA3272DADF76EA [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_AUD" not found; SQL statement:
 alter table SpecimenOrObservationBase_AUD drop constraint FKF3D3D74334869AAE [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_ANNOTATION" not found; SQL statement:
 alter table SpecimenOrObservationBase_Annotation drop constraint FK365E4F3C1E403E0B [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_ANNOTATION" not found; SQL statement:
 alter table SpecimenOrObservationBase_Annotation drop constraint FK365E4F3C3B8A5ABA [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_CREDIT" not found; SQL statement:
 alter table SpecimenOrObservationBase_Credit drop constraint FK7E3A1D8632D1B9F [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_CREDIT" not found; SQL statement:
 alter table SpecimenOrObservationBase_Credit drop constraint FK7E3A1D863B8A5ABA [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_DERIVATIONEVENT" not found; SQL statement:
 alter table SpecimenOrObservationBase_DerivationEvent drop constraint FK20132036BD59A1AD [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_DERIVATIONEVENT" not found; SQL statement:
 alter table SpecimenOrObservationBase_DerivationEvent drop constraint FK2013203654C216AA [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_EXTENSION" not found; SQL statement:
 alter table SpecimenOrObservationBase_Extension drop constraint FKE03B8292927DE9DF [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_EXTENSION" not found; SQL statement:
 alter table SpecimenOrObservationBase_Extension drop constraint FKE03B82923B8A5ABA [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_IDENTIFIER" not found; SQL statement:
 alter table SpecimenOrObservationBase_Identifier drop constraint FK329710B6E12073FF [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_IDENTIFIER" not found; SQL statement:
 alter table SpecimenOrObservationBase_Identifier drop constraint FK329710B63B8A5ABA [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_IDENTIFIER_AUD" not found; SQL statement:
 alter table SpecimenOrObservationBase_Identifier_AUD drop constraint FKFABFF38734869AAE [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_LANGUAGESTRING" not found; SQL statement:
 alter table SpecimenOrObservationBase_LanguageString drop constraint FKCFAA9316CD55E0D6 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_LANGUAGESTRING" not found; SQL statement:
 alter table SpecimenOrObservationBase_LanguageString drop constraint FKCFAA93168028C309 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_LANGUAGESTRING" not found; SQL statement:
 alter table SpecimenOrObservationBase_LanguageString drop constraint FKCFAA93163B8A5ABA [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_MARKER" not found; SQL statement:
 alter table SpecimenOrObservationBase_Marker drop constraint FK8E6106C7777265A1 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_MARKER" not found; SQL statement:
 alter table SpecimenOrObservationBase_Marker drop constraint FK8E6106C73B8A5ABA [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table SpecimenOrObservationBase_OriginalSourceBase drop constraint FKCA7F794A3A6735D9 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table SpecimenOrObservationBase_OriginalSourceBase drop constraint FKCA7F794A3B8A5ABA [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_RIGHTSINFO" not found; SQL statement:
 alter table SpecimenOrObservationBase_RightsInfo drop constraint FK415EFB32C13F7B21 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SPECIMENOROBSERVATIONBASE_RIGHTSINFO" not found; SQL statement:
 alter table SpecimenOrObservationBase_RightsInfo drop constraint FK415EFB323B8A5ABA [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "STATEDATA" not found; SQL statement:
 alter table StateData drop constraint FKFB1697BB4FF2DB2C [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "STATEDATA" not found; SQL statement:
 alter table StateData drop constraint FKFB1697BBBC5DA539 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "STATEDATA" not found; SQL statement:
 alter table StateData drop constraint FKFB1697BB9D97028B [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "STATEDATA" not found; SQL statement:
 alter table StateData drop constraint FKFB1697BB682A4E4B [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "STATEDATA_AUD" not found; SQL statement:
 alter table StateData_AUD drop constraint FKDA6A700C34869AAE [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "STATEDATA_DEFINEDTERMBASE" not found; SQL statement:
 alter table StateData_DefinedTermBase drop constraint FK107321E2F4E35BCD [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "STATEDATA_DEFINEDTERMBASE" not found; SQL statement:
 alter table StateData_DefinedTermBase drop constraint FK107321E28E7BF9AB [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "STATEDATA_LANGUAGESTRING" not found; SQL statement:
 alter table StateData_LanguageString drop constraint FK93FFD2ADF05D08D4 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "STATEDATA_LANGUAGESTRING" not found; SQL statement:
 alter table StateData_LanguageString drop constraint FK93FFD2AD9682414B [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "STATEDATA_LANGUAGESTRING" not found; SQL statement:
 alter table StateData_LanguageString drop constraint FK93FFD2AD8E7BF9AB [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "STATISTICALMEASUREMENTVALUE" not found; SQL statement:
 alter table StatisticalMeasurementValue drop constraint FK2DCE02904FF2DB2C [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "STATISTICALMEASUREMENTVALUE" not found; SQL statement:
 alter table StatisticalMeasurementValue drop constraint FK2DCE0290BC5DA539 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "STATISTICALMEASUREMENTVALUE" not found; SQL statement:
 alter table StatisticalMeasurementValue drop constraint FK2DCE029084A26F69 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "STATISTICALMEASUREMENTVALUE" not found; SQL statement:
 alter table StatisticalMeasurementValue drop constraint FK2DCE02904C428112 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "STATISTICALMEASUREMENTVALUE_AUD" not found; SQL statement:
 alter table StatisticalMeasurementValue_AUD drop constraint FKBB16686134869AAE [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "STATISTICALMEASUREMENTVALUE_DEFINEDTERMBASE" not found; SQL statement:
 alter table StatisticalMeasurementValue_DefinedTermBase drop constraint FK686C42B7F4E35BCD [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "STATISTICALMEASUREMENTVALUE_DEFINEDTERMBASE" not found; SQL statement:
 alter table StatisticalMeasurementValue_DefinedTermBase drop constraint FK686C42B75C9F4F2B [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SYNONYMRELATIONSHIP" not found; SQL statement:
 alter table SynonymRelationship drop constraint FKF483ADB34FF2DB2C [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SYNONYMRELATIONSHIP" not found; SQL statement:
 alter table SynonymRelationship drop constraint FKF483ADB3BC5DA539 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SYNONYMRELATIONSHIP" not found; SQL statement:
 alter table SynonymRelationship drop constraint FKF483ADB3AEB7F3BE [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SYNONYMRELATIONSHIP" not found; SQL statement:
 alter table SynonymRelationship drop constraint FKF483ADB34BAC703F [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SYNONYMRELATIONSHIP" not found; SQL statement:
 alter table SynonymRelationship drop constraint FKF483ADB3F8991B9D [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SYNONYMRELATIONSHIP" not found; SQL statement:
 alter table SynonymRelationship drop constraint FKF483ADB380924EEC [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SYNONYMRELATIONSHIP_AUD" not found; SQL statement:
 alter table SynonymRelationship_AUD drop constraint FK8AEBCA0434869AAE [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SYNONYMRELATIONSHIP_ANNOTATION" not found; SQL statement:
 alter table SynonymRelationship_Annotation drop constraint FKF494F15B1E403E0B [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SYNONYMRELATIONSHIP_ANNOTATION" not found; SQL statement:
 alter table SynonymRelationship_Annotation drop constraint FKF494F15B260A8379 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SYNONYMRELATIONSHIP_MARKER" not found; SQL statement:
 alter table SynonymRelationship_Marker drop constraint FK7A439066777265A1 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "SYNONYMRELATIONSHIP_MARKER" not found; SQL statement:
 alter table SynonymRelationship_Marker drop constraint FK7A439066260A8379 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE" not found; SQL statement:
 alter table TaxonBase drop constraint FK9249B49B4FF2DB2C [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE" not found; SQL statement:
 alter table TaxonBase drop constraint FK9249B49BBC5DA539 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE" not found; SQL statement:
 alter table TaxonBase drop constraint FK9249B49B8492378F [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE" not found; SQL statement:
 alter table TaxonBase drop constraint FK9249B49B74FED214 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE" not found; SQL statement:
 alter table TaxonBase drop constraint FK9249B49B7C7B5AED [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE_AUD" not found; SQL statement:
 alter table TaxonBase_AUD drop constraint FK37041CEC34869AAE [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE_ANNOTATION" not found; SQL statement:
 alter table TaxonBase_Annotation drop constraint FK41ED09731E403E0B [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE_ANNOTATION" not found; SQL statement:
 alter table TaxonBase_Annotation drop constraint FK41ED09739C9D39 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE_CREDIT" not found; SQL statement:
 alter table TaxonBase_Credit drop constraint FK4CB48B3D32D1B9F [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE_CREDIT" not found; SQL statement:
 alter table TaxonBase_Credit drop constraint FK4CB48B3D9C9D39 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE_EXTENSION" not found; SQL statement:
 alter table TaxonBase_Extension drop constraint FKF961257B927DE9DF [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE_EXTENSION" not found; SQL statement:
 alter table TaxonBase_Extension drop constraint FKF961257B9C9D39 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE_IDENTIFIER" not found; SQL statement:
 alter table TaxonBase_Identifier drop constraint FK3E25CAEDE12073FF [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE_IDENTIFIER" not found; SQL statement:
 alter table TaxonBase_Identifier drop constraint FK3E25CAED9C9D39 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE_IDENTIFIER_AUD" not found; SQL statement:
 alter table TaxonBase_Identifier_AUD drop constraint FKCF68BA3E34869AAE [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE_MARKER" not found; SQL statement:
 alter table TaxonBase_Marker drop constraint FK5CDB747E777265A1 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE_MARKER" not found; SQL statement:
 alter table TaxonBase_Marker drop constraint FK5CDB747E9C9D39 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table TaxonBase_OriginalSourceBase drop constraint FKFB680C813A6735D9 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table TaxonBase_OriginalSourceBase drop constraint FKFB680C819C9D39 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE_RIGHTSINFO" not found; SQL statement:
 alter table TaxonBase_RightsInfo drop constraint FK4CEDB569C13F7B21 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONBASE_RIGHTSINFO" not found; SQL statement:
 alter table TaxonBase_RightsInfo drop constraint FK4CEDB5699C9D39 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONINTERACTION_LANGUAGESTRING" not found; SQL statement:
 alter table TaxonInteraction_LanguageString drop constraint FK579A1DC02BEBA58D [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONINTERACTION_LANGUAGESTRING" not found; SQL statement:
 alter table TaxonInteraction_LanguageString drop constraint FK579A1DC028459272 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONINTERACTION_LANGUAGESTRING" not found; SQL statement:
 alter table TaxonInteraction_LanguageString drop constraint FK579A1DC086C86FE0 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE" not found; SQL statement:
 alter table TaxonNameBase drop constraint FKB4870C64FF2DB2C [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE" not found; SQL statement:
 alter table TaxonNameBase drop constraint FKB4870C6BC5DA539 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE" not found; SQL statement:
 alter table TaxonNameBase drop constraint FKB4870C6BFEAE500 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE" not found; SQL statement:
 alter table TaxonNameBase drop constraint FKB4870C6617E62B3 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE" not found; SQL statement:
 alter table TaxonNameBase drop constraint FKB4870C6D7BE55A0 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE" not found; SQL statement:
 alter table TaxonNameBase drop constraint FKB4870C6FBFA5597 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE" not found; SQL statement:
 alter table TaxonNameBase drop constraint FKB4870C681F5DBB0 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE" not found; SQL statement:
 alter table TaxonNameBase drop constraint FKB4870C6503B46C4 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE" not found; SQL statement:
 alter table TaxonNameBase drop constraint FKB4870C63357BF63 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_AUD" not found; SQL statement:
 alter table TaxonNameBase_AUD drop constraint FK5CA2CB9734869AAE [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_ANNOTATION" not found; SQL statement:
 alter table TaxonNameBase_Annotation drop constraint FK9E7794681E403E0B [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_ANNOTATION" not found; SQL statement:
 alter table TaxonNameBase_Annotation drop constraint FK9E7794688C85CF94 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_CREDIT" not found; SQL statement:
 alter table TaxonNameBase_Credit drop constraint FK29BCD8B232D1B9F [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_CREDIT" not found; SQL statement:
 alter table TaxonNameBase_Credit drop constraint FK29BCD8B28C85CF94 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_EXTENSION" not found; SQL statement:
 alter table TaxonNameBase_Extension drop constraint FKC28EE7E6927DE9DF [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_EXTENSION" not found; SQL statement:
 alter table TaxonNameBase_Extension drop constraint FKC28EE7E68C85CF94 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_IDENTIFIER" not found; SQL statement:
 alter table TaxonNameBase_Identifier drop constraint FK9AB055E2E12073FF [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_IDENTIFIER" not found; SQL statement:
 alter table TaxonNameBase_Identifier drop constraint FK9AB055E28C85CF94 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_IDENTIFIER_AUD" not found; SQL statement:
 alter table TaxonNameBase_Identifier_AUD drop constraint FK7D1AC2B334869AAE [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_MARKER" not found; SQL statement:
 alter table TaxonNameBase_Marker drop constraint FK39E3C1F3777265A1 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_MARKER" not found; SQL statement:
 alter table TaxonNameBase_Marker drop constraint FK39E3C1F38C85CF94 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_NOMENCLATURALSTATUS" not found; SQL statement:
 alter table TaxonNameBase_NomenclaturalStatus drop constraint FK560BA7926615E90D [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_NOMENCLATURALSTATUS" not found; SQL statement:
 alter table TaxonNameBase_NomenclaturalStatus drop constraint FK560BA7928C85CF94 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table TaxonNameBase_OriginalSourceBase drop constraint FKF746D2763A6735D9 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table TaxonNameBase_OriginalSourceBase drop constraint FKF746D2768C85CF94 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_RIGHTSINFO" not found; SQL statement:
 alter table TaxonNameBase_RightsInfo drop constraint FKA978405EC13F7B21 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_RIGHTSINFO" not found; SQL statement:
 alter table TaxonNameBase_RightsInfo drop constraint FKA978405E8C85CF94 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_TYPEDESIGNATIONBASE" not found; SQL statement:
 alter table TaxonNameBase_TypeDesignationBase drop constraint FKC0D6BBB5C7DF530C [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNAMEBASE_TYPEDESIGNATIONBASE" not found; SQL statement:
 alter table TaxonNameBase_TypeDesignationBase drop constraint FKC0D6BBB58C85CF94 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNODE" not found; SQL statement:
 alter table TaxonNode drop constraint FK924F5BCC4FF2DB2C [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNODE" not found; SQL statement:
 alter table TaxonNode drop constraint FK924F5BCCBC5DA539 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNODE" not found; SQL statement:
 alter table TaxonNode drop constraint FK924F5BCC84A3CE1B [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNODE" not found; SQL statement:
 alter table TaxonNode drop constraint FK924F5BCC39DB2DFB [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNODE" not found; SQL statement:
 alter table TaxonNode drop constraint FK924F5BCC381381B5 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNODE" not found; SQL statement:
 alter table TaxonNode drop constraint FK924F5BCCCC05993E [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNODE" not found; SQL statement:
 alter table TaxonNode drop constraint FK924F5BCCDE9A3E39 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNODEAGENTRELATION" not found; SQL statement:
 alter table TaxonNodeAgentRelation drop constraint FK28D12BB54FF2DB2C [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNODEAGENTRELATION" not found; SQL statement:
 alter table TaxonNodeAgentRelation drop constraint FK28D12BB5BC5DA539 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNODEAGENTRELATION" not found; SQL statement:
 alter table TaxonNodeAgentRelation drop constraint FK28D12BB58EB3A8A1 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNODEAGENTRELATION" not found; SQL statement:
 alter table TaxonNodeAgentRelation drop constraint FK28D12BB5927D8399 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNODEAGENTRELATION" not found; SQL statement:
 alter table TaxonNodeAgentRelation drop constraint FK28D12BB5E67FC44F [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNODEAGENTRELATION_AUD" not found; SQL statement:
 alter table TaxonNodeAgentRelation_AUD drop constraint FKC066770634869AAE [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNODEAGENTRELATION_ANNOTATION" not found; SQL statement:
 alter table TaxonNodeAgentRelation_Annotation drop constraint FK7CEFFE191E403E0B [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNODEAGENTRELATION_ANNOTATION" not found; SQL statement:
 alter table TaxonNodeAgentRelation_Annotation drop constraint FK7CEFFE193F9CAA9B [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNODEAGENTRELATION_ANNOTATION_AUD" not found; SQL statement:
 alter table TaxonNodeAgentRelation_Annotation_AUD drop constraint FK6A4D776A34869AAE [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNODEAGENTRELATION_MARKER" not found; SQL statement:
 alter table TaxonNodeAgentRelation_Marker drop constraint FKE92EAC24777265A1 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNODEAGENTRELATION_MARKER" not found; SQL statement:
 alter table TaxonNodeAgentRelation_Marker drop constraint FKE92EAC243F9CAA9B [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNODEAGENTRELATION_MARKER_AUD" not found; SQL statement:
 alter table TaxonNodeAgentRelation_Marker_AUD drop constraint FK1C2027F534869AAE [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNODE_AUD" not found; SQL statement:
 alter table TaxonNode_AUD drop constraint FKE090C39D34869AAE [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNODE_ANNOTATION" not found; SQL statement:
 alter table TaxonNode_Annotation drop constraint FKD8A9A9A21E403E0B [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNODE_ANNOTATION" not found; SQL statement:
 alter table TaxonNode_Annotation drop constraint FKD8A9A9A2927D8399 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNODE_MARKER" not found; SQL statement:
 alter table TaxonNode_Marker drop constraint FK395842D777265A1 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONNODE_MARKER" not found; SQL statement:
 alter table TaxonNode_Marker drop constraint FK395842D927D8399 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONRELATIONSHIP" not found; SQL statement:
 alter table TaxonRelationship drop constraint FK7482BA024FF2DB2C [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONRELATIONSHIP" not found; SQL statement:
 alter table TaxonRelationship drop constraint FK7482BA02BC5DA539 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONRELATIONSHIP" not found; SQL statement:
 alter table TaxonRelationship drop constraint FK7482BA02AEB7F3BE [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONRELATIONSHIP" not found; SQL statement:
 alter table TaxonRelationship drop constraint FK7482BA02E71EF6CE [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONRELATIONSHIP" not found; SQL statement:
 alter table TaxonRelationship drop constraint FK7482BA02F8991B9D [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONRELATIONSHIP" not found; SQL statement:
 alter table TaxonRelationship drop constraint FK7482BA02F11BD77B [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONRELATIONSHIP_AUD" not found; SQL statement:
 alter table TaxonRelationship_AUD drop constraint FKA0DE16D334869AAE [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONRELATIONSHIP_ANNOTATION" not found; SQL statement:
 alter table TaxonRelationship_Annotation drop constraint FK82C86DAC1E403E0B [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONRELATIONSHIP_ANNOTATION" not found; SQL statement:
 alter table TaxonRelationship_Annotation drop constraint FK82C86DAC2BD180D9 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONRELATIONSHIP_MARKER" not found; SQL statement:
 alter table TaxonRelationship_Marker drop constraint FK69FBDD37777265A1 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TAXONRELATIONSHIP_MARKER" not found; SQL statement:
 alter table TaxonRelationship_Marker drop constraint FK69FBDD372BD180D9 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY" not found; SQL statement:
 alter table TermVocabulary drop constraint FK487AA6924FF2DB2C [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY" not found; SQL statement:
 alter table TermVocabulary drop constraint FK487AA692BC5DA539 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_AUD" not found; SQL statement:
 alter table TermVocabulary_AUD drop constraint FKA6ED3B6334869AAE [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_ANNOTATION" not found; SQL statement:
 alter table TermVocabulary_Annotation drop constraint FK76D2071C1E403E0B [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_ANNOTATION" not found; SQL statement:
 alter table TermVocabulary_Annotation drop constraint FK76D2071C258E060 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_CREDIT" not found; SQL statement:
 alter table TermVocabulary_Credit drop constraint FK7604C56632D1B9F [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_CREDIT" not found; SQL statement:
 alter table TermVocabulary_Credit drop constraint FK7604C566258E060 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_EXTENSION" not found; SQL statement:
 alter table TermVocabulary_Extension drop constraint FKA8814EB2927DE9DF [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_EXTENSION" not found; SQL statement:
 alter table TermVocabulary_Extension drop constraint FKA8814EB2258E060 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_IDENTIFIER" not found; SQL statement:
 alter table TermVocabulary_Identifier drop constraint FK730AC896E12073FF [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_IDENTIFIER" not found; SQL statement:
 alter table TermVocabulary_Identifier drop constraint FK730AC896258E060 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_IDENTIFIER_AUD" not found; SQL statement:
 alter table TermVocabulary_Identifier_AUD drop constraint FKE8D4BB6734869AAE [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_MARKER" not found; SQL statement:
 alter table TermVocabulary_Marker drop constraint FK862BAEA7777265A1 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_MARKER" not found; SQL statement:
 alter table TermVocabulary_Marker drop constraint FK862BAEA7258E060 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table TermVocabulary_OriginalSourceBase drop constraint FK8F2D512A3A6735D9 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_ORIGINALSOURCEBASE" not found; SQL statement:
 alter table TermVocabulary_OriginalSourceBase drop constraint FK8F2D512A258E060 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_REPRESENTATION" not found; SQL statement:
 alter table TermVocabulary_Representation drop constraint FKA408B63AB31C4747 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_REPRESENTATION" not found; SQL statement:
 alter table TermVocabulary_Representation drop constraint FKA408B63A258E060 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_RIGHTSINFO" not found; SQL statement:
 alter table TermVocabulary_RightsInfo drop constraint FK81D2B312C13F7B21 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TERMVOCABULARY_RIGHTSINFO" not found; SQL statement:
 alter table TermVocabulary_RightsInfo drop constraint FK81D2B312258E060 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TYPEDESIGNATIONBASE" not found; SQL statement:
 alter table TypeDesignationBase drop constraint FK8AC9DCAE4FF2DB2C [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TYPEDESIGNATIONBASE" not found; SQL statement:
 alter table TypeDesignationBase drop constraint FK8AC9DCAEBC5DA539 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TYPEDESIGNATIONBASE" not found; SQL statement:
 alter table TypeDesignationBase drop constraint FK8AC9DCAEAEB7F3BE [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TYPEDESIGNATIONBASE" not found; SQL statement:
 alter table TypeDesignationBase drop constraint FK8AC9DCAE9E3ED08 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TYPEDESIGNATIONBASE" not found; SQL statement:
 alter table TypeDesignationBase drop constraint FK8AC9DCAE4CB0F315 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TYPEDESIGNATIONBASE" not found; SQL statement:
 alter table TypeDesignationBase drop constraint FK8AC9DCAEFBFA41D9 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TYPEDESIGNATIONBASE_AUD" not found; SQL statement:
 alter table TypeDesignationBase_AUD drop constraint FK243C037F34869AAE [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TYPEDESIGNATIONBASE_ANNOTATION" not found; SQL statement:
 alter table TypeDesignationBase_Annotation drop constraint FK4D7327801E403E0B [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TYPEDESIGNATIONBASE_ANNOTATION" not found; SQL statement:
 alter table TypeDesignationBase_Annotation drop constraint FK4D73278044E9E6D4 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TYPEDESIGNATIONBASE_MARKER" not found; SQL statement:
 alter table TypeDesignationBase_Marker drop constraint FKB914A10B777265A1 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "TYPEDESIGNATIONBASE_MARKER" not found; SQL statement:
 alter table TypeDesignationBase_Marker drop constraint FKB914A10B44E9E6D4 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "USERACCOUNT" not found; SQL statement:
 alter table UserAccount drop constraint FKB3F13C24FF2DB2C [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "USERACCOUNT" not found; SQL statement:
 alter table UserAccount drop constraint FKB3F13C2AAC1B820 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "USERACCOUNT_AUD" not found; SQL statement:
 alter table UserAccount_AUD drop constraint FK6A57909334869AAE [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "USERACCOUNT_GRANTEDAUTHORITYIMPL" not found; SQL statement:
 alter table UserAccount_GrantedAuthorityImpl drop constraint FKFD724D851857F6C2 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "USERACCOUNT_GRANTEDAUTHORITYIMPL" not found; SQL statement:
 alter table UserAccount_GrantedAuthorityImpl drop constraint FKFD724D855EA5DD89 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "USERACCOUNT_PERMISSIONGROUP" not found; SQL statement:
 alter table UserAccount_PermissionGroup drop constraint FK812DE753DA9DCB5F [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "USERACCOUNT_PERMISSIONGROUP" not found; SQL statement:
 alter table UserAccount_PermissionGroup drop constraint FK812DE753887E3D12 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "WORKINGSET" not found; SQL statement:
 alter table WorkingSet drop constraint FK668D5B914FF2DB2C [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "WORKINGSET" not found; SQL statement:
 alter table WorkingSet drop constraint FK668D5B91BC5DA539 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "WORKINGSET" not found; SQL statement:
 alter table WorkingSet drop constraint FK668D5B9123DB7F04 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "WORKINGSET_AUD" not found; SQL statement:
 alter table WorkingSet_AUD drop constraint FK628F58E234869AAE [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "WORKINGSET_ANNOTATION" not found; SQL statement:
 alter table WorkingSet_Annotation drop constraint FKCBBA8CBD1E403E0B [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "WORKINGSET_ANNOTATION" not found; SQL statement:
 alter table WorkingSet_Annotation drop constraint FKCBBA8CBDBBD2C869 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "WORKINGSET_DESCRIPTIONBASE" not found; SQL statement:
 alter table WorkingSet_DescriptionBase drop constraint FK731CC81F33B8A841 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "WORKINGSET_DESCRIPTIONBASE" not found; SQL statement:
 alter table WorkingSet_DescriptionBase drop constraint FK731CC81FBBD2C869 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "WORKINGSET_MARKER" not found; SQL statement:
 alter table WorkingSet_Marker drop constraint FK9CB22CC8777265A1 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "WORKINGSET_MARKER" not found; SQL statement:
 alter table WorkingSet_Marker drop constraint FK9CB22CC8BBD2C869 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "WORKINGSET_REPRESENTATION" not found; SQL statement:
 alter table WorkingSet_Representation drop constraint FKA003835BB31C4747 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "WORKINGSET_REPRESENTATION" not found; SQL statement:
 alter table WorkingSet_Representation drop constraint FKA003835BBBD2C869 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "WORKINGSET_TAXONBASE" not found; SQL statement:
 alter table WorkingSet_TaxonBase drop constraint FK34EB896D7C3D0017 [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Table "WORKINGSET_TAXONBASE" not found; SQL statement:
 alter table WorkingSet_TaxonBase drop constraint FK34EB896DB4555A9A [42102-170]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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]
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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)
@@ -3885,7 +4294,7 @@ alter table AgentBase add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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)
@@ -3942,7 +4351,7 @@ alter table Amplification add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table AmplificationResult add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -3999,7 +4408,7 @@ alter table AmplificationResult add constraint _UniqueKey unique (uuid) [90045-1
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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)
@@ -4056,7 +4465,7 @@ alter table Annotation add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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)
@@ -4113,7 +4522,7 @@ alter table CdmMetaData add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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)
@@ -4170,7 +4579,7 @@ alter table Classification add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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)
@@ -4227,7 +4636,7 @@ alter table Collection add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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)
@@ -4284,7 +4693,7 @@ alter table Credit add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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)
@@ -4341,7 +4750,7 @@ alter table DefinedTermBase add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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)
@@ -4398,7 +4807,7 @@ alter table DerivationEvent add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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)
@@ -4455,7 +4864,7 @@ alter table DescriptionBase add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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)
@@ -4512,7 +4921,7 @@ alter table DescriptionElementBase add constraint _UniqueKey unique (uuid) [9004
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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)
@@ -4569,7 +4978,7 @@ alter table DeterminationEvent add constraint _UniqueKey unique (uuid) [90045-17
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table DnaQuality add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -4626,7 +5035,7 @@ alter table DnaQuality add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table EntityConstraintViolation add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -4683,7 +5092,7 @@ alter table EntityConstraintViolation add constraint _UniqueKey unique (uuid) [9
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table EntityValidation add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -4740,7 +5149,7 @@ alter table EntityValidation add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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)
@@ -4797,7 +5206,7 @@ alter table Extension add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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)
@@ -4854,7 +5263,7 @@ alter table FeatureNode add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:36 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)
@@ -4911,7 +5320,7 @@ alter table FeatureTree add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:37 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)
@@ -4968,7 +5377,7 @@ alter table GatheringEvent add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:37 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table GrantedAuthorityImpl add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -5025,7 +5434,7 @@ alter table GrantedAuthorityImpl add constraint _UniqueKey unique (uuid) [90045-
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:37 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)
@@ -5082,7 +5491,7 @@ alter table HomotypicalGroup add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:37 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)
@@ -5139,7 +5548,7 @@ alter table HybridRelationship add constraint _UniqueKey unique (uuid) [90045-17
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:37 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table Identifier add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -5196,7 +5605,7 @@ alter table Identifier add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:37 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)
@@ -5253,7 +5662,7 @@ alter table InstitutionalMembership add constraint _UniqueKey unique (uuid) [900
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:37 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table IntextReference add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -5310,7 +5719,7 @@ alter table IntextReference add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:37 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)
@@ -5367,7 +5776,7 @@ alter table KeyStatement add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:37 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)
@@ -5424,7 +5833,7 @@ alter table LSIDAuthority add constraint _UniqueKey unique (uuid, authority) [90
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:37 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)
@@ -5481,7 +5890,7 @@ alter table LanguageString add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:37 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)
@@ -5538,7 +5947,7 @@ alter table Marker add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:37 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)
@@ -5595,7 +6004,7 @@ alter table MaterialOrMethodEvent add constraint _UniqueKey unique (uuid) [90045
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:37 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)
@@ -5652,7 +6061,7 @@ alter table Media add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:37 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)
@@ -5709,7 +6118,7 @@ alter table MediaRepresentation add constraint _UniqueKey unique (uuid) [90045-1
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:41 jdbc[9]: exception
+06-15 17:38:37 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)
@@ -5766,7 +6175,7 @@ alter table MediaRepresentationPart add constraint _UniqueKey unique (uuid) [900
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:42 jdbc[9]: exception
+06-15 17:38:37 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)
@@ -5823,7 +6232,7 @@ alter table NameRelationship add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:42 jdbc[9]: exception
+06-15 17:38:37 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)
@@ -5880,7 +6289,7 @@ alter table NomenclaturalStatus add constraint _UniqueKey unique (uuid) [90045-1
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:42 jdbc[9]: exception
+06-15 17:38:37 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)
@@ -5937,7 +6346,7 @@ alter table OriginalSourceBase add constraint _UniqueKey unique (uuid) [90045-17
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:42 jdbc[9]: exception
+06-15 17:38:37 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table PermissionGroup add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -5994,7 +6403,7 @@ alter table PermissionGroup add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:42 jdbc[9]: exception
+06-15 17:38:37 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)
@@ -6051,7 +6460,7 @@ alter table PolytomousKey add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:42 jdbc[9]: exception
+06-15 17:38:37 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)
@@ -6108,7 +6517,7 @@ alter table PolytomousKeyNode add constraint _UniqueKey unique (uuid) [90045-170
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:42 jdbc[9]: exception
+06-15 17:38:37 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)
@@ -6165,7 +6574,7 @@ alter table Primer add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:42 jdbc[9]: exception
+06-15 17:38:37 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)
@@ -6222,7 +6631,7 @@ alter table Reference add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:42 jdbc[9]: exception
+06-15 17:38:37 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)
@@ -6279,7 +6688,7 @@ alter table Representation add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:42 jdbc[9]: exception
+06-15 17:38:37 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)
@@ -6336,7 +6745,7 @@ alter table RightsInfo add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:42 jdbc[9]: exception
+06-15 17:38:37 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)
@@ -6393,7 +6802,7 @@ alter table Sequence add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:42 jdbc[9]: exception
+06-15 17:38:37 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)
@@ -6450,7 +6859,7 @@ alter table SingleRead add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:42 jdbc[9]: exception
+06-15 17:38:37 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table SingleReadAlignment add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -6507,7 +6916,7 @@ alter table SingleReadAlignment add constraint _UniqueKey unique (uuid) [90045-1
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:42 jdbc[9]: exception
+06-15 17:38:37 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)
@@ -6564,7 +6973,7 @@ alter table SpecimenOrObservationBase add constraint _UniqueKey unique (uuid) [9
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:42 jdbc[9]: exception
+06-15 17:38:37 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)
@@ -6621,7 +7030,7 @@ alter table StateData add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:42 jdbc[9]: exception
+06-15 17:38:37 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)
@@ -6678,7 +7087,7 @@ alter table StatisticalMeasurementValue add constraint _UniqueKey unique (uuid)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:42 jdbc[9]: exception
+06-15 17:38:37 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)
@@ -6735,7 +7144,7 @@ alter table SynonymRelationship add constraint _UniqueKey unique (uuid) [90045-1
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:42 jdbc[9]: exception
+06-15 17:38:37 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)
@@ -6792,7 +7201,7 @@ alter table TaxonBase add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:42 jdbc[9]: exception
+06-15 17:38:37 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)
@@ -6849,7 +7258,7 @@ alter table TaxonNameBase add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:42 jdbc[9]: exception
+06-15 17:38:37 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)
@@ -6906,7 +7315,7 @@ alter table TaxonNode add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:42 jdbc[9]: exception
+06-15 17:38:37 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table TaxonNodeAgentRelation add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -6963,7 +7372,7 @@ alter table TaxonNodeAgentRelation add constraint _UniqueKey unique (uuid) [9004
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:42 jdbc[9]: exception
+06-15 17:38:37 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)
@@ -7020,7 +7429,7 @@ alter table TaxonRelationship add constraint _UniqueKey unique (uuid) [90045-170
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:42 jdbc[9]: exception
+06-15 17:38:37 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)
@@ -7077,7 +7486,7 @@ alter table TermVocabulary add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:42 jdbc[9]: exception
+06-15 17:38:37 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)
@@ -7134,7 +7543,7 @@ alter table TypeDesignationBase add constraint _UniqueKey unique (uuid) [90045-1
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:42 jdbc[9]: exception
+06-15 17:38:37 jdbc[2]: exception
 org.h2.jdbc.JdbcSQLException: Constraint "_UNIQUEKEY" already exists; SQL statement:
 alter table UserAccount add constraint _UniqueKey unique (uuid) [90045-170]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:329)
@@ -7191,7 +7600,7 @@ alter table UserAccount add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:36:42 jdbc[9]: exception
+06-15 17:38:37 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)
@@ -7248,323 +7657,3 @@ alter table WorkingSet add constraint _UniqueKey unique (uuid) [90045-170]
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
        at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-06-08 17:37:00 jdbc[10]: 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)
-       at org.h2.message.DbException.get(DbException.java:135)
-       at org.h2.jdbc.JdbcConnection.closeOld(JdbcConnection.java:175)
-       at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:120)
-       at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:93)
-       at org.h2.Driver.connect(Driver.java:72)
-       at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:38)
-       at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:582)
-       at org.apache.commons.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:1148)
-       at org.apache.commons.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:106)
-       at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044)
-       at org.hibernate.service.jdbc.connections.internal.DatasourceConnectionProviderImpl.getConnection(DatasourceConnectionProviderImpl.java:141)
-       at org.hibernate.internal.AbstractSessionImpl$NonContextualJdbcConnectionAccess.obtainConnection(AbstractSessionImpl.java:292)
-       at org.hibernate.engine.transaction.internal.jdbc.JdbcIsolationDelegate.delegateWork(JdbcIsolationDelegate.java:68)
-       at org.hibernate.id.enhanced.TableGenerator$1.getNextValue(TableGenerator.java:471)
-       at org.hibernate.id.enhanced.OptimizerFactory$PooledOptimizer.generate(OptimizerFactory.java:453)
-       at org.hibernate.id.enhanced.TableGenerator.generate(TableGenerator.java:467)
-       at org.hibernate.event.internal.AbstractSaveEventListener.saveWithGeneratedId(AbstractSaveEventListener.java:117)
-       at org.hibernate.event.internal.DefaultSaveOrUpdateEventListener.saveWithGeneratedOrRequestedId(DefaultSaveOrUpdateEventListener.java:204)
-       at org.hibernate.event.internal.DefaultSaveEventListener.saveWithGeneratedOrRequestedId(DefaultSaveEventListener.java:55)
-       at org.hibernate.event.internal.DefaultSaveOrUpdateEventListener.entityIsTransient(DefaultSaveOrUpdateEventListener.java:189)
-       at org.hibernate.event.internal.DefaultSaveEventListener.performSaveOrUpdate(DefaultSaveEventListener.java:49)
-       at org.hibernate.event.internal.DefaultSaveOrUpdateEventListener.onSaveOrUpdate(DefaultSaveOrUpdateEventListener.java:90)
-       at org.hibernate.internal.SessionImpl.fireSave(SessionImpl.java:756)
-       at org.hibernate.internal.SessionImpl.save(SessionImpl.java:748)
-       at org.hibernate.internal.SessionImpl.save(SessionImpl.java:744)
-       at eu.etaxonomy.cdm.persistence.dao.hibernate.common.CdmEntityDaoBase.save(CdmEntityDaoBase.java:300)
-       at eu.etaxonomy.cdm.database.PersistentTermInitializer.doInitialize(PersistentTermInitializer.java:140)
-       at eu.etaxonomy.cdm.model.common.DefaultTermInitializer.initialize(DefaultTermInitializer.java:35)
-       at eu.etaxonomy.cdm.database.PersistentTermInitializer.initialize(PersistentTermInitializer.java:92)
-       at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
-       at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
-       at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
-       at java.lang.reflect.Method.invoke(Method.java:606)
-       at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleElement.invoke(InitDestroyAnnotationBeanPostProcessor.java:344)
-       at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeInitMethods(InitDestroyAnnotationBeanPostProcessor.java:295)
-       at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:130)
-       at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsBeforeInitialization(AbstractAutowireCapableBeanFactory.java:399)
-       at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1481)
-       at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:524)
-       at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:461)
-       at eu.etaxonomy.cdm.api.application.MonitoredListableBeanFactory.createBean(MonitoredListableBeanFactory.java:108)
-       at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:295)
-       at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:223)
-       at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:292)
-       at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:194)
-       at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:626)
-       at eu.etaxonomy.cdm.api.application.MonitoredListableBeanFactory.preInstantiateSingletons(MonitoredListableBeanFactory.java:71)
-       at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:932)
-       at eu.etaxonomy.cdm.api.application.MonitoredGenericApplicationContext.finishBeanFactoryInitialization(MonitoredGenericApplicationContext.java:74)
-       at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:479)
-       at eu.etaxonomy.cdm.api.application.MonitoredGenericApplicationContext.refresh(MonitoredGenericApplicationContext.java:102)
-       at eu.etaxonomy.cdm.api.application.CdmApplicationController.setNewDataSource(CdmApplicationController.java:264)
-       at eu.etaxonomy.cdm.api.application.CdmApplicationController.<init>(CdmApplicationController.java:204)
-       at eu.etaxonomy.cdm.api.application.CdmApplicationController.NewInstance(CdmApplicationController.java:148)
-       at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
-       at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
-       at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-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)
-       ... 59 more
-06-08 17:37:00 jdbc[10]: 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)
-       at org.h2.message.DbException.get(DbException.java:135)
-       at org.h2.jdbc.JdbcConnection.closeOld(JdbcConnection.java:175)
-       at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:120)
-       at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:93)
-       at org.h2.Driver.connect(Driver.java:72)
-       at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:38)
-       at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:582)
-       at org.apache.commons.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:1148)
-       at org.apache.commons.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:106)
-       at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044)
-       at org.hibernate.service.jdbc.connections.internal.DatasourceConnectionProviderImpl.getConnection(DatasourceConnectionProviderImpl.java:141)
-       at org.hibernate.internal.AbstractSessionImpl$NonContextualJdbcConnectionAccess.obtainConnection(AbstractSessionImpl.java:292)
-       at org.hibernate.engine.transaction.internal.jdbc.JdbcIsolationDelegate.delegateWork(JdbcIsolationDelegate.java:68)
-       at org.hibernate.id.enhanced.TableGenerator$1.getNextValue(TableGenerator.java:471)
-       at org.hibernate.id.enhanced.OptimizerFactory$PooledOptimizer.generate(OptimizerFactory.java:453)
-       at org.hibernate.id.enhanced.TableGenerator.generate(TableGenerator.java:467)
-       at org.hibernate.event.internal.AbstractSaveEventListener.saveWithGeneratedId(AbstractSaveEventListener.java:117)
-       at org.hibernate.event.internal.DefaultSaveOrUpdateEventListener.saveWithGeneratedOrRequestedId(DefaultSaveOrUpdateEventListener.java:204)
-       at org.hibernate.event.internal.DefaultSaveEventListener.saveWithGeneratedOrRequestedId(DefaultSaveEventListener.java:55)
-       at org.hibernate.event.internal.DefaultSaveOrUpdateEventListener.entityIsTransient(DefaultSaveOrUpdateEventListener.java:189)
-       at org.hibernate.event.internal.DefaultSaveEventListener.performSaveOrUpdate(DefaultSaveEventListener.java:49)
-       at org.hibernate.event.internal.DefaultSaveOrUpdateEventListener.onSaveOrUpdate(DefaultSaveOrUpdateEventListener.java:90)
-       at org.hibernate.internal.SessionImpl.fireSave(SessionImpl.java:756)
-       at org.hibernate.internal.SessionImpl.save(SessionImpl.java:748)
-       at org.hibernate.internal.SessionImpl.save(SessionImpl.java:744)
-       at eu.etaxonomy.cdm.persistence.dao.hibernate.common.CdmEntityDaoBase.save(CdmEntityDaoBase.java:300)
-       at eu.etaxonomy.cdm.database.PersistentTermInitializer.doInitialize(PersistentTermInitializer.java:140)
-       at eu.etaxonomy.cdm.model.common.DefaultTermInitializer.initialize(DefaultTermInitializer.java:35)
-       at eu.etaxonomy.cdm.database.PersistentTermInitializer.initialize(PersistentTermInitializer.java:92)
-       at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
-       at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
-       at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
-       at java.lang.reflect.Method.invoke(Method.java:606)
-       at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleElement.invoke(InitDestroyAnnotationBeanPostProcessor.java:344)
-       at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeInitMethods(InitDestroyAnnotationBeanPostProcessor.java:295)
-       at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:130)
-       at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsBeforeInitialization(AbstractAutowireCapableBeanFactory.java:399)
-       at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1481)
-       at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:524)
-       at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:461)
-       at eu.etaxonomy.cdm.api.application.MonitoredListableBeanFactory.createBean(MonitoredListableBeanFactory.java:108)
-       at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:295)
-       at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:223)
-       at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:292)
-       at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:194)
-       at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:626)
-       at eu.etaxonomy.cdm.api.application.MonitoredListableBeanFactory.preInstantiateSingletons(MonitoredListableBeanFactory.java:71)
-       at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:932)
-       at eu.etaxonomy.cdm.api.application.MonitoredGenericApplicationContext.finishBeanFactoryInitialization(MonitoredGenericApplicationContext.java:74)
-       at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:479)
-       at eu.etaxonomy.cdm.api.application.MonitoredGenericApplicationContext.refresh(MonitoredGenericApplicationContext.java:102)
-       at eu.etaxonomy.cdm.api.application.CdmApplicationController.setNewDataSource(CdmApplicationController.java:264)
-       at eu.etaxonomy.cdm.api.application.CdmApplicationController.<init>(CdmApplicationController.java:204)
-       at eu.etaxonomy.cdm.api.application.CdmApplicationController.NewInstance(CdmApplicationController.java:148)
-       at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
-       at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
-       at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-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)
-       ... 59 more
-06-08 17:37:00 jdbc[10]: 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)
-       at org.h2.message.DbException.get(DbException.java:135)
-       at org.h2.jdbc.JdbcConnection.closeOld(JdbcConnection.java:175)
-       at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:120)
-       at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:93)
-       at org.h2.Driver.connect(Driver.java:72)
-       at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:38)
-       at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:582)
-       at org.apache.commons.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:1148)
-       at org.apache.commons.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:106)
-       at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044)
-       at org.hibernate.service.jdbc.connections.internal.DatasourceConnectionProviderImpl.getConnection(DatasourceConnectionProviderImpl.java:141)
-       at org.hibernate.internal.AbstractSessionImpl$NonContextualJdbcConnectionAccess.obtainConnection(AbstractSessionImpl.java:292)
-       at org.hibernate.engine.transaction.internal.jdbc.JdbcIsolationDelegate.delegateWork(JdbcIsolationDelegate.java:68)
-       at org.hibernate.id.enhanced.TableGenerator$1.getNextValue(TableGenerator.java:471)
-       at org.hibernate.id.enhanced.OptimizerFactory$PooledOptimizer.generate(OptimizerFactory.java:453)
-       at org.hibernate.id.enhanced.TableGenerator.generate(TableGenerator.java:467)
-       at org.hibernate.event.internal.AbstractSaveEventListener.saveWithGeneratedId(AbstractSaveEventListener.java:117)
-       at org.hibernate.event.internal.DefaultSaveOrUpdateEventListener.saveWithGeneratedOrRequestedId(DefaultSaveOrUpdateEventListener.java:204)
-       at org.hibernate.event.internal.DefaultSaveEventListener.saveWithGeneratedOrRequestedId(DefaultSaveEventListener.java:55)
-       at org.hibernate.event.internal.DefaultSaveOrUpdateEventListener.entityIsTransient(DefaultSaveOrUpdateEventListener.java:189)
-       at org.hibernate.event.internal.DefaultSaveEventListener.performSaveOrUpdate(DefaultSaveEventListener.java:49)
-       at org.hibernate.event.internal.DefaultSaveOrUpdateEventListener.onSaveOrUpdate(DefaultSaveOrUpdateEventListener.java:90)
-       at org.hibernate.internal.SessionImpl.fireSave(SessionImpl.java:756)
-       at org.hibernate.internal.SessionImpl.save(SessionImpl.java:748)
-       at org.hibernate.internal.SessionImpl.save(SessionImpl.java:744)
-       at eu.etaxonomy.cdm.persistence.dao.hibernate.common.CdmEntityDaoBase.save(CdmEntityDaoBase.java:300)
-       at eu.etaxonomy.cdm.database.PersistentTermInitializer.doInitialize(PersistentTermInitializer.java:140)
-       at eu.etaxonomy.cdm.model.common.DefaultTermInitializer.initialize(DefaultTermInitializer.java:35)
-       at eu.etaxonomy.cdm.database.PersistentTermInitializer.initialize(PersistentTermInitializer.java:92)
-       at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
-       at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
-       at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
-       at java.lang.reflect.Method.invoke(Method.java:606)
-       at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleElement.invoke(InitDestroyAnnotationBeanPostProcessor.java:344)
-       at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeInitMethods(InitDestroyAnnotationBeanPostProcessor.java:295)
-       at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:130)
-       at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsBeforeInitialization(AbstractAutowireCapableBeanFactory.java:399)
-       at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1481)
-       at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:524)
-       at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:461)
-       at eu.etaxonomy.cdm.api.application.MonitoredListableBeanFactory.createBean(MonitoredListableBeanFactory.java:108)
-       at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:295)
-       at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:223)
-       at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:292)
-       at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:194)
-       at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:626)
-       at eu.etaxonomy.cdm.api.application.MonitoredListableBeanFactory.preInstantiateSingletons(MonitoredListableBeanFactory.java:71)
-       at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:932)
-       at eu.etaxonomy.cdm.api.application.MonitoredGenericApplicationContext.finishBeanFactoryInitialization(MonitoredGenericApplicationContext.java:74)
-       at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:479)
-       at eu.etaxonomy.cdm.api.application.MonitoredGenericApplicationContext.refresh(MonitoredGenericApplicationContext.java:102)
-       at eu.etaxonomy.cdm.api.application.CdmApplicationController.setNewDataSource(CdmApplicationController.java:264)
-       at eu.etaxonomy.cdm.api.application.CdmApplicationController.<init>(CdmApplicationController.java:204)
-       at eu.etaxonomy.cdm.api.application.CdmApplicationController.NewInstance(CdmApplicationController.java:148)
-       at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
-       at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
-       at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-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)
-       ... 59 more
-06-08 17:37:00 jdbc[10]: 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)
-       at org.h2.message.DbException.get(DbException.java:135)
-       at org.h2.jdbc.JdbcConnection.closeOld(JdbcConnection.java:175)
-       at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:120)
-       at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:93)
-       at org.h2.Driver.connect(Driver.java:72)
-       at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:38)
-       at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:582)
-       at org.apache.commons.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:1148)
-       at org.apache.commons.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:106)
-       at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044)
-       at org.hibernate.service.jdbc.connections.internal.DatasourceConnectionProviderImpl.getConnection(DatasourceConnectionProviderImpl.java:141)
-       at org.hibernate.internal.AbstractSessionImpl$NonContextualJdbcConnectionAccess.obtainConnection(AbstractSessionImpl.java:292)
-       at org.hibernate.engine.transaction.internal.jdbc.JdbcIsolationDelegate.delegateWork(JdbcIsolationDelegate.java:68)
-       at org.hibernate.id.enhanced.TableGenerator$1.getNextValue(TableGenerator.java:471)
-       at org.hibernate.id.enhanced.OptimizerFactory$PooledOptimizer.generate(OptimizerFactory.java:453)
-       at org.hibernate.id.enhanced.TableGenerator.generate(TableGenerator.java:467)
-       at org.hibernate.event.internal.AbstractSaveEventListener.saveWithGeneratedId(AbstractSaveEventListener.java:117)
-       at org.hibernate.event.internal.DefaultSaveOrUpdateEventListener.saveWithGeneratedOrRequestedId(DefaultSaveOrUpdateEventListener.java:204)
-       at org.hibernate.event.internal.DefaultSaveEventListener.saveWithGeneratedOrRequestedId(DefaultSaveEventListener.java:55)
-       at org.hibernate.event.internal.DefaultSaveOrUpdateEventListener.entityIsTransient(DefaultSaveOrUpdateEventListener.java:189)
-       at org.hibernate.event.internal.DefaultSaveEventListener.performSaveOrUpdate(DefaultSaveEventListener.java:49)
-       at org.hibernate.event.internal.DefaultSaveOrUpdateEventListener.onSaveOrUpdate(DefaultSaveOrUpdateEventListener.java:90)
-       at org.hibernate.internal.SessionImpl.fireSave(SessionImpl.java:756)
-       at org.hibernate.internal.SessionImpl.save(SessionImpl.java:748)
-       at org.hibernate.internal.SessionImpl.save(SessionImpl.java:744)
-       at eu.etaxonomy.cdm.persistence.dao.hibernate.common.CdmEntityDaoBase.save(CdmEntityDaoBase.java:300)
-       at eu.etaxonomy.cdm.database.PersistentTermInitializer.doInitialize(PersistentTermInitializer.java:140)
-       at eu.etaxonomy.cdm.model.common.DefaultTermInitializer.initialize(DefaultTermInitializer.java:35)
-       at eu.etaxonomy.cdm.database.PersistentTermInitializer.initialize(PersistentTermInitializer.java:92)
-       at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
-       at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
-       at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
-       at java.lang.reflect.Method.invoke(Method.java:606)
-       at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleElement.invoke(InitDestroyAnnotationBeanPostProcessor.java:344)
-       at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeInitMethods(InitDestroyAnnotationBeanPostProcessor.java:295)
-       at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:130)
-       at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsBeforeInitialization(AbstractAutowireCapableBeanFactory.java:399)
-       at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1481)
-       at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:524)
-       at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:461)
-       at eu.etaxonomy.cdm.api.application.MonitoredListableBeanFactory.createBean(MonitoredListableBeanFactory.java:108)
-       at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:295)
-       at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:223)
-       at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:292)
-       at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:194)
-       at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:626)
-       at eu.etaxonomy.cdm.api.application.MonitoredListableBeanFactory.preInstantiateSingletons(MonitoredListableBeanFactory.java:71)
-       at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:932)
-       at eu.etaxonomy.cdm.api.application.MonitoredGenericApplicationContext.finishBeanFactoryInitialization(MonitoredGenericApplicationContext.java:74)
-       at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:479)
-       at eu.etaxonomy.cdm.api.application.MonitoredGenericApplicationContext.refresh(MonitoredGenericApplicationContext.java:102)
-       at eu.etaxonomy.cdm.api.application.CdmApplicationController.setNewDataSource(CdmApplicationController.java:264)
-       at eu.etaxonomy.cdm.api.application.CdmApplicationController.<init>(CdmApplicationController.java:204)
-       at eu.etaxonomy.cdm.api.application.CdmApplicationController.NewInstance(CdmApplicationController.java:148)
-       at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
-       at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
-       at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-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)
-       ... 59 more
-06-08 17:37:00 jdbc[10]: 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)
-       at org.h2.message.DbException.get(DbException.java:135)
-       at org.h2.jdbc.JdbcConnection.closeOld(JdbcConnection.java:175)
-       at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:120)
-       at org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:93)
-       at org.h2.Driver.connect(Driver.java:72)
-       at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:38)
-       at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:582)
-       at org.apache.commons.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:1148)
-       at org.apache.commons.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:106)
-       at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044)
-       at org.hibernate.service.jdbc.connections.internal.DatasourceConnectionProviderImpl.getConnection(DatasourceConnectionProviderImpl.java:141)
-       at org.hibernate.internal.AbstractSessionImpl$NonContextualJdbcConnectionAccess.obtainConnection(AbstractSessionImpl.java:292)
-       at org.hibernate.engine.transaction.internal.jdbc.JdbcIsolationDelegate.delegateWork(JdbcIsolationDelegate.java:68)
-       at org.hibernate.id.enhanced.TableGenerator$1.getNextValue(TableGenerator.java:471)
-       at org.hibernate.id.enhanced.OptimizerFactory$PooledOptimizer.generate(OptimizerFactory.java:453)
-       at org.hibernate.id.enhanced.TableGenerator.generate(TableGenerator.java:467)
-       at org.hibernate.event.internal.AbstractSaveEventListener.saveWithGeneratedId(AbstractSaveEventListener.java:117)
-       at org.hibernate.event.internal.DefaultSaveOrUpdateEventListener.saveWithGeneratedOrRequestedId(DefaultSaveOrUpdateEventListener.java:204)
-       at org.hibernate.event.internal.DefaultSaveEventListener.saveWithGeneratedOrRequestedId(DefaultSaveEventListener.java:55)
-       at org.hibernate.event.internal.DefaultSaveOrUpdateEventListener.entityIsTransient(DefaultSaveOrUpdateEventListener.java:189)
-       at org.hibernate.event.internal.DefaultSaveEventListener.performSaveOrUpdate(DefaultSaveEventListener.java:49)
-       at org.hibernate.event.internal.DefaultSaveOrUpdateEventListener.onSaveOrUpdate(DefaultSaveOrUpdateEventListener.java:90)
-       at org.hibernate.internal.SessionImpl.fireSave(SessionImpl.java:756)
-       at org.hibernate.internal.SessionImpl.save(SessionImpl.java:748)
-       at org.hibernate.internal.SessionImpl.save(SessionImpl.java:744)
-       at eu.etaxonomy.cdm.persistence.dao.hibernate.common.CdmEntityDaoBase.save(CdmEntityDaoBase.java:300)
-       at eu.etaxonomy.cdm.database.PersistentTermInitializer.doInitialize(PersistentTermInitializer.java:140)
-       at eu.etaxonomy.cdm.model.common.DefaultTermInitializer.initialize(DefaultTermInitializer.java:35)
-       at eu.etaxonomy.cdm.database.PersistentTermInitializer.initialize(PersistentTermInitializer.java:92)
-       at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
-       at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
-       at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
-       at java.lang.reflect.Method.invoke(Method.java:606)
-       at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleElement.invoke(InitDestroyAnnotationBeanPostProcessor.java:344)
-       at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeInitMethods(InitDestroyAnnotationBeanPostProcessor.java:295)
-       at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:130)
-       at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsBeforeInitialization(AbstractAutowireCapableBeanFactory.java:399)
-       at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1481)
-       at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:524)
-       at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:461)
-       at eu.etaxonomy.cdm.api.application.MonitoredListableBeanFactory.createBean(MonitoredListableBeanFactory.java:108)
-       at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:295)
-       at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:223)
-       at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:292)
-       at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:194)
-       at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:626)
-       at eu.etaxonomy.cdm.api.application.MonitoredListableBeanFactory.preInstantiateSingletons(MonitoredListableBeanFactory.java:71)
-       at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:932)
-       at eu.etaxonomy.cdm.api.application.MonitoredGenericApplicationContext.finishBeanFactoryInitialization(MonitoredGenericApplicationContext.java:74)
-       at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:479)
-       at eu.etaxonomy.cdm.api.application.MonitoredGenericApplicationContext.refresh(MonitoredGenericApplicationContext.java:102)
-       at eu.etaxonomy.cdm.api.application.CdmApplicationController.setNewDataSource(CdmApplicationController.java:264)
-       at eu.etaxonomy.cdm.api.application.CdmApplicationController.<init>(CdmApplicationController.java:204)
-       at eu.etaxonomy.cdm.api.application.CdmApplicationController.NewInstance(CdmApplicationController.java:148)
-       at eu.etaxonomy.taxeditor.store.CdmStoreConnector.getApplicationController(CdmStoreConnector.java:151)
-       at eu.etaxonomy.taxeditor.store.CdmStoreConnector.run(CdmStoreConnector.java:99)
-       at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
-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)
-       ... 59 more