-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTriggers.sql.txt
281 lines (194 loc) · 6.4 KB
/
Triggers.sql.txt
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
USE MEI_TRAB
if exists (select * from sys.triggers where Name = 'TR_Encomenda_I_U')
Begin
DROP TRIGGER TR_Encomenda_I_U
End
GO
-- Trigger associado a Insert e Update. O Delete de encomendas é tratado à parte.
CREATE TRIGGER TR_Encomenda_I_U
ON Encomenda
FOR INSERT, UPDATE
AS
DECLARE @NumReg int
DECLARE @EventType Char(1)
DECLARE @DELETEDCOUNT INT
DECLARE @INSERTEDCOUNT INT
DECLARE @EncId int
DECLARE @Objecto varchar(30)
DECLARE @Valor varchar(100)
DECLARE @Referencia varchar(100)
SELECT @DELETEDCOUNT = COUNT(*) FROM deleted
SELECT @INSERTEDCOUNT = COUNT(*) FROM inserted
-- Event type
IF (@DELETEDCOUNT > 0) AND (@INSERTEDCOUNT > 0 )
Set @EventType = 'U'
ELSE IF (@INSERTEDCOUNT > 0 )
Set @EventType = 'I'
Set @Objecto = 'Encomenda' -- Tabela encomenda
Set @Referencia = NULL -- Para estas operações não é usada a referência
DECLARE fh_cursor CURSOR FOR
SELECT EncId FROM inserted ORDER by EncId
OPEN fh_cursor
FETCH NEXT FROM fh_cursor INTO @EncId
WHILE (@@fetch_status = 0)
BEGIN
Set @Valor = CAST(@EncId as nvarchar(100)) -- Convert int to varchar
INSERT INTO LogOperations (EventType, Objecto, Valor, Referencia)
Values (@EventType, @Objecto, @Valor, @Referencia)
FETCH NEXT FROM fh_cursor INTO @EncId
END
IF (@@fetch_status = -1)
Begin
CLOSE fh_cursor
DEALLOCATE fh_cursor
RETURN
End
on_error:
CLOSE fh_cursor
DEALLOCATE fh_cursor
RAISERROR('Can''t insert the record',16,1 )
ROLLBACK TRANSACTION
GO
if exists (select * from sys.triggers where Name = 'TR_Encomenda_D')
Begin
DROP TRIGGER TR_Encomenda_D
End
GO
CREATE TRIGGER TR_Encomenda_D
ON Encomenda
FOR DELETE
AS
DECLARE @NumReg int
DECLARE @EventType Char(1)
DECLARE @EncId int
DECLARE @ClienteID int
DECLARE @Nome nvarchar(30)
DECLARE @Morada nvarchar(30)
DECLARE @Objecto varchar(30)
DECLARE @Valor varchar(100)
DECLARE @Referencia varchar(100)
Set @EventType = 'D'
Set @Objecto = 'Encomenda' -- Tabela encomenda
Set @Referencia = NULL -- Para estas operações não é usada a referência
--
-- with a cursor we can iterate the deleted rows
--
DECLARE fh_cursor CURSOR FOR
SELECT EncId, ClienteId, Nome, Morada FROM Deleted ORDER by EncId
OPEN fh_cursor
FETCH NEXT FROM fh_cursor INTO @EncId, @ClienteId, @Nome, @Morada
WHILE (@@fetch_status = 0)
BEGIN
Set @Valor = CAST(@EncId as nvarchar(10)) + '|'+ @Nome + '|' + @Morada
INSERT INTO LogOperations (EventType, Objecto, Valor, Referencia)
Values (@EventType, @Objecto, @Valor, @Referencia)
FETCH NEXT FROM fh_cursor INTO @EncId, @ClienteId, @Nome, @Morada
END
IF (@@fetch_status = -1)
Begin
CLOSE fh_cursor
DEALLOCATE fh_cursor
RETURN
End
on_error:
CLOSE fh_cursor
DEALLOCATE fh_cursor
RAISERROR('Can''t insert the record',16,1 )
ROLLBACK TRANSACTION
GO
if exists (select * from sys.triggers where Name = 'TR_EncLinha_I_U')
Begin
DROP TRIGGER TR_EncLinha_I_U
End
GO
CREATE TRIGGER TR_EncLinha_I_U
ON EncLinha
FOR INSERT, UPDATE
AS
DECLARE @EventType Char(1)
DECLARE @EncId int
DECLARE @ProdutoID int
DECLARE @Objecto varchar(30)
DECLARE @Valor varchar(100)
DECLARE @Referencia varchar(100)
DECLARE @DELETEDCOUNT INT
DECLARE @INSERTEDCOUNT INT
SELECT @DELETEDCOUNT = COUNT(*) FROM deleted
SELECT @INSERTEDCOUNT = COUNT(*) FROM inserted
-- Event type
IF (@DELETEDCOUNT > 0) AND (@INSERTEDCOUNT > 0 )
Set @EventType = 'U'
ELSE IF (@INSERTEDCOUNT > 0 )
Set @EventType = 'I'
Set @Objecto = 'EncLinha' -- Tabela encomenda
DECLARE fh_cursor CURSOR FOR
SELECT EncId, ProdutoId FROM inserted ORDER by EncId
OPEN fh_cursor
FETCH NEXT FROM fh_cursor INTO @EncId, @ProdutoId
WHILE (@@fetch_status = 0)
BEGIN
Set @Valor = CAST(@EncId as varchar(100)) -- Convert int to varchar
Set @Referencia = CAST(@ProdutoId as varchar(100)) -- Convert int to varchar
INSERT INTO LogOperations (EventType, Objecto, Valor, Referencia)
Values (@EventType, @Objecto, @Valor, @Referencia)
FETCH NEXT FROM fh_cursor INTO @EncId, @ProdutoId
END
IF (@@fetch_status = -1)
Begin
CLOSE fh_cursor
DEALLOCATE fh_cursor
RETURN
End
on_error:
CLOSE fh_cursor
DEALLOCATE fh_cursor
RAISERROR('Can''t insert the record',16,1 )
ROLLBACK TRANSACTION
GO
if exists (select * from sys.triggers where Name = 'TR_EncLinha_D')
Begin
DROP TRIGGER TR_EncLinha_D
End
GO
CREATE TRIGGER TR_EncLinha_D
ON EncLinha
FOR Delete
AS
DECLARE @EventType Char(1)
DECLARE @DELETEDCOUNT INT
DECLARE @INSERTEDCOUNT INT
DECLARE @EncId int
DECLARE @ProdutoID int
DECLARE @Designacao nvarchar(50)
DECLARE @Preco Decimal(10,2)
DECLARE @Qtd Decimal(10,2)
DECLARE @Objecto varchar(30)
DECLARE @Valor varchar(100)
DECLARE @Referencia varchar(100)
Set @EventType = 'D'
Set @Objecto = 'EncLinha' -- Tabela encomenda
Set @Referencia = NULL -- Para estas operações não é usada a referência
DECLARE fh_cursor CURSOR FOR
SELECT EncId, ProdutoId, Designacao, Preco, Qtd FROM Deleted ORDER by EncId
OPEN fh_cursor
FETCH NEXT FROM fh_cursor INTO @EncId, @ProdutoId, @Designacao, @Preco, @Qtd
WHILE (@@fetch_status = 0)
BEGIN
Set @Valor = CAST(@EncId as nvarchar(10)) + '|'+ CAST(@ProdutoId as nvarchar(10))
Set @Referencia = @Designacao + '|'+ CAST(@Preco as nvarchar(10)) + '|'+ CAST(@Qtd as nvarchar(10))
INSERT INTO LogOperations (EventType, Objecto, Valor, Referencia)
Values (@EventType, @Objecto, @Valor, @Referencia)
FETCH NEXT FROM fh_cursor INTO @EncId, @ProdutoId, @Designacao, @Preco, @Qtd
END
IF (@@fetch_status = -1)
Begin
CLOSE fh_cursor
DEALLOCATE fh_cursor
RETURN
End
on_error:
CLOSE fh_cursor
DEALLOCATE fh_cursor
RAISERROR('Can''t insert the record',16,1 )
ROLLBACK TRANSACTION
GO