Index: trunk/ippTools/src/pxtables.c
===================================================================
--- trunk/ippTools/src/pxtables.c	(revision 9790)
+++ trunk/ippTools/src/pxtables.c	(revision 10037)
@@ -44,7 +44,18 @@
     PS_ASSERT_PTR_NON_NULL(config, false);
 
+#if 0
+    CREATE_TABLE(expTagCounterCreateTable);
+    // the counter must be initialized to 0
+    if (!p_psDBRunQuery(config->dbh, "INSERT INTO expTagCounter VALUES (0)")) {
+        psError(PS_ERR_UNKNOWN, false, "database error");
+        status = false; 
+    }
+#endif
     CREATE_TABLE(summitExpCreateTable);
+    CREATE_TABLE(summitImfileCreateTable);
     CREATE_TABLE(pzPendingExpCreateTable);
     CREATE_TABLE(pzPendingImfileCreateTable);
+    CREATE_TABLE(pzDoneExpCreateTable);
+    CREATE_TABLE(pzDoneImfileCreateTable);
     CREATE_TABLE(newExpCreateTable);
     CREATE_TABLE(newImfileCreateTable);
@@ -104,7 +115,11 @@
     }
 
+//    DROP_TABLE(expTagCounterDropTable);
     DROP_TABLE(summitExpDropTable);
+    DROP_TABLE(summitImfileDropTable);
     DROP_TABLE(pzPendingExpDropTable);
     DROP_TABLE(pzPendingImfileDropTable);
+    DROP_TABLE(pzDoneExpDropTable);
+    DROP_TABLE(pzDoneImfileDropTable);
     DROP_TABLE(newExpDropTable);
     DROP_TABLE(newImfileDropTable);
