-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paths-06-netmax-tipo-monitor-trigger.sql
82 lines (78 loc) · 3.43 KB
/
s-06-netmax-tipo-monitor-trigger.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
--@Autor: Carlos A. Hernández A. & Marco A. Moreno Guerra
--@Fecha creación: 17/Junio/2020
--@Descripción: trigger para replicación síncrona de TIPO_MONITOR
create or replace trigger t_dml_tipo_monitor
instead of insert or update or delete on TIPO_MONITOR
declare
v_count number;
begin
case
when inserting then
v_count := 0;
--replica local
insert into TIPO_MONITOR_R1(tipo_monitor_id,clave,descripcion)
values (:new.tipo_monitor_id,:new.clave,:new.descripcion);
v_count := v_count + sql%rowcount;
--replica 2
insert into TIPO_MONITOR_R2(tipo_monitor_id,clave,descripcion)
values (:new.tipo_monitor_id,:new.clave,:new.descripcion);
v_count := v_count + sql%rowcount;
--replica 3
insert into TIPO_MONITOR_R3(tipo_monitor_id,clave,descripcion)
values (:new.tipo_monitor_id,:new.clave,:new.descripcion);
v_count := v_count + sql%rowcount;
--replica 4
insert into TIPO_MONITOR_R4(tipo_monitor_id,clave,descripcion)
values (:new.tipo_monitor_id,:new.clave,:new.descripcion);
v_count := v_count + sql%rowcount;
if v_count <> 4 then
raise_application_error(-20040,
'Número incorrecto de registros insertados en tabla replicada: '
||v_count);
end if;
when deleting then
v_count := 0;
--replica local
delete from TIPO_MONITOR_R1 where tipo_monitor_id = :old.tipo_monitor_id;
v_count := v_count + sql%rowcount;
--replica 2
delete from TIPO_MONITOR_R2 where tipo_monitor_id = :old.tipo_monitor_id;
v_count := v_count + sql%rowcount;
--replica 3
delete from TIPO_MONITOR_R3 where tipo_monitor_id = :old.tipo_monitor_id;
v_count := v_count + sql%rowcount;
--replica 4
delete from TIPO_MONITOR_R4 where tipo_monitor_id = :old.tipo_monitor_id;
v_count := v_count + sql%rowcount;
if v_count <> 4 then
raise_application_error(-20040,
'Número incorrecto de registros eliminados en tabla replicada: '
||v_count);
end if;
when updating then
--replica local
v_count := 0;
update TIPO_MONITOR_R1 set clave = :new.clave,descripcion =:new.descripcion
where tipo_monitor_id = :new.tipo_monitor_id;
v_count := v_count + sql%rowcount;
--replica 2
update TIPO_MONITOR_R2 set clave = :new.clave,descripcion =:new.descripcion
where tipo_monitor_id = :new.tipo_monitor_id;
v_count := v_count + sql%rowcount;
--replica 3
update TIPO_MONITOR_R3 set clave = :new.clave,descripcion =:new.descripcion
where tipo_monitor_id = :new.tipo_monitor_id;
v_count := v_count + sql%rowcount;
--replica 4
update TIPO_MONITOR_R4 set clave = :new.clave,descripcion =:new.descripcion
where tipo_monitor_id = :new.tipo_monitor_id;
v_count := v_count + sql%rowcount;
if v_count <> 4 then
raise_application_error(-20040,
'Número incorrecto de registros actualizados en tabla replicada: '
||v_count);
end if;
end case;
end;
/
show errors