Changes between Version 5 and Version 6 of drmsSubscribe
- Timestamp:
- 02/18/15 08:32:55 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
drmsSubscribe
v5 v6 92 92 }}} 93 93 94 === Manual cleanup before subscription === 94 95 96 Sometimes it becomes necessary to manually clean out after a failed attempt at subscription, since if tables are partially built it can block subsequent 97 subscription attempts. To do this for the hmi.v_720s series, the following 98 needs to be done in the database : 95 99 100 {{{ 101 DROP TABLE hmi.v_720s; 102 DROP SEQUENCE hmi.v_720s_seq; 103 DELETE FROM hmi.drms_series where seriesname = 'hmi.v_720s'; 104 DELETE FROM hmi.drms_segment where seriesname = 'hmi.v_720s'; 105 DELETE FROM hmi.drms_keyword where seriesname = 'hmi.v_720s'; 106 }}} 107 108 NOTE that you MUST then subscribe. Otherwise your slony updates may pertain to this table, which could cause slony updates to fail.