Changes between Version 5 and Version 6 of drmsSubscribe


Ignore:
Timestamp:
02/18/15 08:32:55 (9 years ago)
Author:
niles
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • drmsSubscribe

    v5 v6  
    9292}}} 
    9393 
     94=== Manual cleanup before subscription === 
    9495 
     96Sometimes it becomes necessary to manually clean out after a failed attempt at subscription, since if tables are partially built it can block subsequent 
     97subscription attempts. To do this for the hmi.v_720s series, the following 
     98needs to be done in the database : 
    9599 
     100{{{ 
     101DROP TABLE hmi.v_720s; 
     102DROP SEQUENCE hmi.v_720s_seq; 
     103DELETE FROM hmi.drms_series where seriesname = 'hmi.v_720s'; 
     104DELETE FROM hmi.drms_segment where seriesname = 'hmi.v_720s'; 
     105DELETE FROM hmi.drms_keyword where seriesname = 'hmi.v_720s'; 
     106}}} 
     107 
     108NOTE that you MUST then subscribe. Otherwise your slony updates may pertain to this table, which could cause slony updates to fail.