[open-ils-commits] r13688 - branches/rel_1_6_0/Open-ILS/src/support-scripts (miker)

svn at svn.open-ils.org svn at svn.open-ils.org
Wed Jul 22 12:48:18 EDT 2009


Author: miker
Date: 2009-07-22 12:48:15 -0400 (Wed, 22 Jul 2009)
New Revision: 13688

Added:
   branches/rel_1_6_0/Open-ILS/src/support-scripts/regenerate_simple_rec_view.sql
Log:
Temporary script to deal with ingest trigger issues

Added: branches/rel_1_6_0/Open-ILS/src/support-scripts/regenerate_simple_rec_view.sql
===================================================================
--- branches/rel_1_6_0/Open-ILS/src/support-scripts/regenerate_simple_rec_view.sql	                        (rev 0)
+++ branches/rel_1_6_0/Open-ILS/src/support-scripts/regenerate_simple_rec_view.sql	2009-07-22 16:48:15 UTC (rev 13688)
@@ -0,0 +1,32 @@
+/*
+ * Copyright (C) 2009  Equinox Software, Inc.
+ * Mike Rylander <miker at 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;
+



More information about the open-ils-commits mailing list