Temporary script to deal with ingest trigger issues
authormiker <miker@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Wed, 22 Jul 2009 16:48:33 +0000 (16:48 +0000)
committermiker <miker@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Wed, 22 Jul 2009 16:48:33 +0000 (16:48 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/trunk@13690 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/src/support-scripts/regenerate_simple_rec_view.sql [new file with mode: 0644]

diff --git a/Open-ILS/src/support-scripts/regenerate_simple_rec_view.sql b/Open-ILS/src/support-scripts/regenerate_simple_rec_view.sql
new file mode 100644 (file)
index 0000000..2d89731
--- /dev/null
@@ -0,0 +1,32 @@
+/*
+ * Copyright (C) 2009  Equinox Software, Inc.
+ * Mike Rylander <miker@esilibrary.com>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ */
+
+--
+-- This implements a fix, for now, for an ingest issue seemingly
+-- caused by atomicity issues in the simple_record_update trigger.
+--
+-- Set this up to be run by cron on a regular basis -- daily or hourly,
+-- depending on your reporting requirements -- in order to refresh the
+-- Simple Record Extracts reporting source.
+--
+
+BEGIN;
+
+SELECT reporter.enable_materialized_simple_record_trigger();
+SELECT reporter.disable_materialized_simple_record_trigger(); 
+
+COMMIT;
+