Commit | Line | Data |
---|---|---|
6f33021d | 1 | /* |
5039dede | 2 | ** nxdbmgr - NetXMS database manager |
805171de | 3 | ** Copyright (C) 2004-2015 Victor Kirhenshtein |
5039dede AK |
4 | ** |
5 | ** This program is free software; you can redistribute it and/or modify | |
6 | ** it under the terms of the GNU General Public License as published by | |
7 | ** the Free Software Foundation; either version 2 of the License, or | |
8 | ** (at your option) any later version. | |
9 | ** | |
10 | ** This program is distributed in the hope that it will be useful, | |
11 | ** but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | ** GNU General Public License for more details. | |
14 | ** | |
15 | ** You should have received a copy of the GNU General Public License | |
16 | ** along with this program; if not, write to the Free Software | |
17 | ** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | |
18 | ** | |
19 | ** File: upgrade.cpp | |
20 | ** | |
21 | **/ | |
22 | ||
23 | #include "nxdbmgr.h" | |
bf6fb6c3 | 24 | #include <nxevent.h> |
5039dede | 25 | |
4f50e45c VK |
26 | /** |
27 | * Externals | |
28 | */ | |
7a41a06e VK |
29 | BOOL MigrateMaps(); |
30 | ||
271e3971 VK |
31 | /** |
32 | * Generate GUIDs | |
33 | */ | |
34 | static bool GenerateGUID(const TCHAR *table, const TCHAR *idColumn, const TCHAR *guidColumn) | |
35 | { | |
36 | TCHAR query[256]; | |
37 | _sntprintf(query, 256, _T("SELECT %s FROM %s"), idColumn, table); | |
38 | DB_RESULT hResult = SQLSelect(query); | |
39 | if (hResult == NULL) | |
40 | return false; | |
41 | ||
42 | int count = DBGetNumRows(hResult); | |
43 | for(int i = 0; i < count; i++) | |
44 | { | |
45 | uuid_t guid; | |
46 | TCHAR buffer[64]; | |
47 | ||
48 | uuid_generate(guid); | |
49 | _sntprintf(query, 256, _T("UPDATE %s SET %s='%s' WHERE %s=%d"), | |
50 | table, guidColumn, uuid_to_string(guid, buffer), idColumn, DBGetFieldULong(hResult, i, 0)); | |
51 | if (!SQLQuery(query)) | |
52 | { | |
53 | DBFreeResult(hResult); | |
54 | return false; | |
55 | } | |
56 | } | |
57 | DBFreeResult(hResult); | |
58 | return true; | |
59 | } | |
60 | ||
4f50e45c VK |
61 | /** |
62 | * Create table | |
63 | */ | |
5039dede AK |
64 | static BOOL CreateTable(const TCHAR *pszQuery) |
65 | { | |
5039dede | 66 | BOOL bResult; |
7618e362 | 67 | String query(pszQuery); |
5039dede | 68 | |
2a964810 VK |
69 | query.replace(_T("$SQL:TEXT"), g_pszSqlType[g_dbSyntax][SQL_TYPE_TEXT]); |
70 | query.replace(_T("$SQL:TXT4K"), g_pszSqlType[g_dbSyntax][SQL_TYPE_TEXT4K]); | |
71 | query.replace(_T("$SQL:INT64"), g_pszSqlType[g_dbSyntax][SQL_TYPE_INT64]); | |
72 | if (g_dbSyntax == DB_SYNTAX_MYSQL) | |
7618e362 VK |
73 | query += g_pszTableSuffix; |
74 | bResult = SQLQuery(query); | |
5039dede AK |
75 | return bResult; |
76 | } | |
77 | ||
4f50e45c VK |
78 | /** |
79 | * Create configuration parameter if it doesn't exist (unless bForceUpdate set to true) | |
80 | */ | |
b3eb058b | 81 | BOOL CreateConfigParam(const TCHAR *pszName, const TCHAR *pszValue, int iVisible, int iNeedRestart, BOOL bForceUpdate) |
5039dede | 82 | { |
42475f3e | 83 | TCHAR szQuery[1024]; |
5039dede AK |
84 | DB_RESULT hResult; |
85 | BOOL bVarExist = FALSE, bResult = TRUE; | |
86 | ||
87 | // Check for variable existence | |
08b214c6 | 88 | _sntprintf(szQuery, 1024, _T("SELECT var_value FROM config WHERE var_name='%s'"), pszName); |
5039dede AK |
89 | hResult = DBSelect(g_hCoreDB, szQuery); |
90 | if (hResult != 0) | |
91 | { | |
92 | if (DBGetNumRows(hResult) > 0) | |
93 | bVarExist = TRUE; | |
94 | DBFreeResult(hResult); | |
95 | } | |
96 | ||
97 | if (!bVarExist) | |
98 | { | |
08b214c6 | 99 | _sntprintf(szQuery, 1024, _T("INSERT INTO config (var_name,var_value,is_visible,") |
6f33021d | 100 | _T("need_server_restart) VALUES (%s,%s,%d,%d)"), |
101 | (const TCHAR *)DBPrepareString(g_hCoreDB, pszName, 63), | |
42475f3e | 102 | (const TCHAR *)DBPrepareString(g_hCoreDB, pszValue, 255), iVisible, iNeedRestart); |
5039dede AK |
103 | bResult = SQLQuery(szQuery); |
104 | } | |
105 | else if (bForceUpdate) | |
106 | { | |
42475f3e VK |
107 | _sntprintf(szQuery, 1024, _T("UPDATE config SET var_value=%s WHERE var_name=%s"), |
108 | (const TCHAR *)DBPrepareString(g_hCoreDB, pszValue, 255), (const TCHAR *)DBPrepareString(g_hCoreDB, pszName, 63)); | |
5039dede AK |
109 | bResult = SQLQuery(szQuery); |
110 | } | |
111 | return bResult; | |
112 | } | |
113 | ||
4f50e45c VK |
114 | /** |
115 | * Set primary key constraint | |
116 | */ | |
5039dede AK |
117 | static BOOL SetPrimaryKey(const TCHAR *table, const TCHAR *key) |
118 | { | |
119 | TCHAR query[4096]; | |
120 | ||
2a964810 | 121 | if (g_dbSyntax == DB_SYNTAX_SQLITE) |
5039dede | 122 | return TRUE; // SQLite does not support adding constraints |
6f33021d | 123 | |
5039dede AK |
124 | _sntprintf(query, 4096, _T("ALTER TABLE %s ADD PRIMARY KEY (%s)"), table, key); |
125 | return SQLQuery(query); | |
126 | } | |
127 | ||
4f50e45c VK |
128 | /** |
129 | * Drop primary key from table | |
130 | */ | |
9bfc9a6b VK |
131 | static BOOL DropPrimaryKey(const TCHAR *table) |
132 | { | |
133 | TCHAR query[1024]; | |
134 | DB_RESULT hResult; | |
135 | BOOL success; | |
136 | ||
2a964810 | 137 | switch(g_dbSyntax) |
9bfc9a6b VK |
138 | { |
139 | case DB_SYNTAX_ORACLE: | |
140 | case DB_SYNTAX_MYSQL: | |
141 | _sntprintf(query, 1024, _T("ALTER TABLE %s DROP PRIMARY KEY"), table); | |
142 | success = SQLQuery(query); | |
143 | break; | |
144 | case DB_SYNTAX_PGSQL: | |
145 | _sntprintf(query, 1024, _T("ALTER TABLE %s DROP CONSTRAINT %s_pkey"), table, table); | |
146 | success = SQLQuery(query); | |
147 | break; | |
148 | case DB_SYNTAX_MSSQL: | |
149 | success = FALSE; | |
150 | _sntprintf(query, 1024, _T("SELECT name FROM sysobjects WHERE xtype='PK' AND parent_obj=OBJECT_ID('%s')"), table); | |
151 | hResult = SQLSelect(query); | |
152 | if (hResult != NULL) | |
153 | { | |
154 | if (DBGetNumRows(hResult) > 0) | |
155 | { | |
156 | TCHAR objName[512]; | |
157 | ||
158 | DBGetField(hResult, 0, 0, objName, 512); | |
159 | _sntprintf(query, 1024, _T("ALTER TABLE %s DROP CONSTRAINT %s"), table, objName); | |
160 | success = SQLQuery(query); | |
161 | } | |
162 | DBFreeResult(hResult); | |
163 | } | |
164 | break; | |
165 | default: // Unsupported DB engine | |
166 | success = FALSE; | |
167 | break; | |
168 | } | |
169 | return success; | |
170 | } | |
171 | ||
4f50e45c VK |
172 | /** |
173 | * Convert strings from # encoded form to normal form | |
174 | */ | |
d6bf58f9 | 175 | static BOOL ConvertStrings(const TCHAR *table, const TCHAR *idColumn, const TCHAR *idColumn2, const TCHAR *column, bool isStringId) |
643c9dcb VK |
176 | { |
177 | DB_RESULT hResult; | |
178 | TCHAR *query; | |
4e0e77e6 | 179 | size_t queryLen = 512; |
643c9dcb VK |
180 | BOOL success = FALSE; |
181 | ||
c29fb885 | 182 | query = (TCHAR *)malloc(queryLen * sizeof(TCHAR)); |
fe12a1ea | 183 | |
2a964810 | 184 | switch(g_dbSyntax) |
a4743a0f VK |
185 | { |
186 | case DB_SYNTAX_MSSQL: | |
9f6712bc | 187 | _sntprintf(query, queryLen, _T("UPDATE %s SET %s='' WHERE CAST(%s AS nvarchar(4000))=N'#00'"), table, column, column); |
a4743a0f VK |
188 | break; |
189 | case DB_SYNTAX_ORACLE: | |
190 | _sntprintf(query, queryLen, _T("UPDATE %s SET %s='' WHERE to_char(%s)='#00'"), table, column, column); | |
191 | break; | |
192 | default: | |
193 | _sntprintf(query, queryLen, _T("UPDATE %s SET %s='' WHERE %s='#00'"), table, column, column); | |
194 | break; | |
195 | } | |
fe12a1ea VK |
196 | if (!SQLQuery(query)) |
197 | { | |
198 | free(query); | |
199 | return FALSE; | |
200 | } | |
201 | ||
6f33021d | 202 | _sntprintf(query, queryLen, _T("SELECT %s,%s%s%s FROM %s WHERE %s LIKE '%%#%%'"), |
98cd01bb | 203 | idColumn, column, (idColumn2 != NULL) ? _T(",") : _T(""), (idColumn2 != NULL) ? idColumn2 : _T(""), table, column); |
643c9dcb VK |
204 | hResult = SQLSelect(query); |
205 | if (hResult == NULL) | |
206 | { | |
207 | free(query); | |
208 | return FALSE; | |
209 | } | |
210 | ||
211 | int count = DBGetNumRows(hResult); | |
212 | for(int i = 0; i < count; i++) | |
213 | { | |
643c9dcb | 214 | TCHAR *value = DBGetField(hResult, i, 1, NULL, 0); |
035a4d73 | 215 | if (_tcschr(value, _T('#')) != NULL) |
643c9dcb | 216 | { |
035a4d73 VK |
217 | DecodeSQLString(value); |
218 | String newValue = DBPrepareString(g_hCoreDB, value); | |
4e0e77e6 | 219 | if (newValue.length() + 256 > queryLen) |
035a4d73 | 220 | { |
4e0e77e6 | 221 | queryLen = newValue.length() + 256; |
c29fb885 | 222 | query = (TCHAR *)realloc(query, queryLen * sizeof(TCHAR)); |
035a4d73 | 223 | } |
d6bf58f9 | 224 | if (isStringId) |
98cd01bb | 225 | { |
d6bf58f9 VK |
226 | TCHAR *id = DBGetField(hResult, i, 0, NULL, 0); |
227 | if (idColumn2 != NULL) | |
228 | { | |
229 | TCHAR *id2 = DBGetField(hResult, i, 2, NULL, 0); | |
230 | _sntprintf(query, queryLen, _T("UPDATE %s SET %s=%s WHERE %s=%s AND %s=%s"), | |
231 | table, column, (const TCHAR *)newValue, | |
6f33021d | 232 | idColumn, (const TCHAR *)DBPrepareString(g_hCoreDB, id), |
d6bf58f9 VK |
233 | idColumn2, (const TCHAR *)DBPrepareString(g_hCoreDB, id2)); |
234 | } | |
235 | else | |
236 | { | |
237 | _sntprintf(query, queryLen, _T("UPDATE %s SET %s=%s WHERE %s=%s"), table, column, | |
238 | (const TCHAR *)newValue, idColumn, (const TCHAR *)DBPrepareString(g_hCoreDB, id)); | |
239 | } | |
240 | free(id); | |
98cd01bb VK |
241 | } |
242 | else | |
243 | { | |
d6bf58f9 VK |
244 | INT64 id = DBGetFieldInt64(hResult, i, 0); |
245 | if (idColumn2 != NULL) | |
246 | { | |
247 | INT64 id2 = DBGetFieldInt64(hResult, i, 2); | |
6f33021d | 248 | _sntprintf(query, queryLen, _T("UPDATE %s SET %s=%s WHERE %s=") INT64_FMT _T(" AND %s=") INT64_FMT, |
d6bf58f9 VK |
249 | table, column, (const TCHAR *)newValue, idColumn, id, idColumn2, id2); |
250 | } | |
251 | else | |
252 | { | |
253 | _sntprintf(query, queryLen, _T("UPDATE %s SET %s=%s WHERE %s=") INT64_FMT, table, column, | |
254 | (const TCHAR *)newValue, idColumn, id); | |
255 | } | |
98cd01bb | 256 | } |
035a4d73 VK |
257 | if (!SQLQuery(query)) |
258 | goto cleanup; | |
643c9dcb | 259 | } |
643c9dcb VK |
260 | } |
261 | success = TRUE; | |
262 | ||
263 | cleanup: | |
264 | DBFreeResult(hResult); | |
a4743a0f | 265 | free(query); |
643c9dcb VK |
266 | return success; |
267 | } | |
268 | ||
98cd01bb VK |
269 | static BOOL ConvertStrings(const TCHAR *table, const TCHAR *idColumn, const TCHAR *column) |
270 | { | |
d6bf58f9 | 271 | return ConvertStrings(table, idColumn, NULL, column, false); |
98cd01bb VK |
272 | } |
273 | ||
4f50e45c | 274 | /** |
70ffb771 | 275 | * Set column nullable (currently only Oracle and PostgreSQL) |
4f50e45c | 276 | */ |
480e036b | 277 | static BOOL SetColumnNullable(const TCHAR *table, const TCHAR *column) |
1024e962 VK |
278 | { |
279 | TCHAR query[1024] = _T(""); | |
280 | ||
2a964810 | 281 | switch(g_dbSyntax) |
1024e962 VK |
282 | { |
283 | case DB_SYNTAX_ORACLE: | |
284 | _sntprintf(query, 1024, _T("DECLARE already_null EXCEPTION; ") | |
285 | _T("PRAGMA EXCEPTION_INIT(already_null, -1451); ") | |
f57209fd VK |
286 | _T("BEGIN EXECUTE IMMEDIATE 'ALTER TABLE %s MODIFY %s null'; ") |
287 | _T("EXCEPTION WHEN already_null THEN null; END;"), table, column); | |
1024e962 | 288 | break; |
480e036b VK |
289 | case DB_SYNTAX_PGSQL: |
290 | _sntprintf(query, 1024, _T("ALTER TABLE %s ALTER COLUMN %s DROP NOT NULL"), table, column); | |
291 | break; | |
1024e962 VK |
292 | default: |
293 | break; | |
294 | } | |
295 | ||
296 | return (query[0] != 0) ? SQLQuery(query) : TRUE; | |
297 | } | |
298 | ||
480e036b VK |
299 | /** |
300 | * Resize varchar column | |
301 | */ | |
b69710b9 | 302 | static BOOL ResizeColumn(const TCHAR *table, const TCHAR *column, int newSize, bool nullable) |
480e036b VK |
303 | { |
304 | TCHAR query[1024]; | |
305 | ||
2a964810 | 306 | switch(g_dbSyntax) |
480e036b VK |
307 | { |
308 | case DB_SYNTAX_DB2: | |
309 | _sntprintf(query, 1024, _T("ALTER TABLE %s ALTER COLUMN %s SET DATA TYPE varchar(%d)"), table, column, newSize); | |
310 | break; | |
311 | case DB_SYNTAX_MSSQL: | |
b69710b9 | 312 | _sntprintf(query, 1024, _T("ALTER TABLE %s ALTER COLUMN %s varchar(%d) %s NULL"), table, column, newSize, nullable ? _T("") : _T("NOT")); |
480e036b VK |
313 | break; |
314 | case DB_SYNTAX_PGSQL: | |
315 | _sntprintf(query, 1024, _T("ALTER TABLE %s ALTER COLUMN %s TYPE varchar(%d)"), table, column, newSize); | |
316 | break; | |
317 | case DB_SYNTAX_SQLITE: | |
318 | /* TODO: add SQLite support */ | |
319 | query[0] = 0; | |
320 | break; | |
321 | default: | |
322 | _sntprintf(query, 1024, _T("ALTER TABLE %s MODIFY %s varchar(%d)"), table, column, newSize); | |
323 | break; | |
324 | } | |
325 | ||
326 | return (query[0] != 0) ? SQLQuery(query) : TRUE; | |
327 | } | |
328 | ||
4f50e45c VK |
329 | /** |
330 | * Create new event template | |
331 | */ | |
aa16f82b VK |
332 | static BOOL CreateEventTemplate(int code, const TCHAR *name, int severity, int flags, const TCHAR *message, const TCHAR *description) |
333 | { | |
480e036b | 334 | TCHAR query[4096]; |
aa16f82b | 335 | |
480e036b VK |
336 | _sntprintf(query, 4096, _T("INSERT INTO event_cfg (event_code,event_name,severity,flags,message,description) VALUES (%d,'%s',%d,%d,%s,%s)"), |
337 | code, name, severity, flags, (const TCHAR *)DBPrepareString(g_hCoreDB, message), | |
338 | (const TCHAR *)DBPrepareString(g_hCoreDB, description)); | |
aa16f82b VK |
339 | return SQLQuery(query); |
340 | } | |
341 | ||
22aaa779 VK |
342 | /** |
343 | * Re-create TDATA tables | |
344 | */ | |
2f1bc68b | 345 | static BOOL RecreateTData(const TCHAR *className, bool multipleTables, bool indexFix) |
22aaa779 | 346 | { |
1d4f7890 | 347 | TCHAR query[1024]; |
22aaa779 VK |
348 | _sntprintf(query, 256, _T("SELECT id FROM %s"), className); |
349 | DB_RESULT hResult = SQLSelect(query); | |
350 | if (hResult != NULL) | |
351 | { | |
352 | int count = DBGetNumRows(hResult); | |
353 | for(int i = 0; i < count; i++) | |
354 | { | |
2f1bc68b | 355 | bool recreateTables = true; |
22aaa779 VK |
356 | DWORD id = DBGetFieldULong(hResult, i, 0); |
357 | ||
2f1bc68b | 358 | if (indexFix) |
1d4f7890 | 359 | { |
2f1bc68b VK |
360 | _sntprintf(query, 256, _T("SELECT count(*) FROM dc_tables WHERE node_id=%d"), id); |
361 | DB_RESULT hResultCount = SQLSelect(query); | |
362 | if (hResultCount != NULL) | |
22aaa779 | 363 | { |
7d4f8ace | 364 | recreateTables = (DBGetFieldLong(hResultCount, 0, 0) == 0); |
2f1bc68b VK |
365 | DBFreeResult(hResultCount); |
366 | } | |
367 | ||
368 | if (!recreateTables) | |
369 | { | |
a9f5aa55 | 370 | _sntprintf(query, 256, _T("CREATE INDEX idx_tdata_rec_%d_id ON tdata_records_%d(record_id)"), id, id); |
2f1bc68b VK |
371 | if (!SQLQuery(query)) |
372 | { | |
373 | if (!g_bIgnoreErrors) | |
374 | { | |
375 | DBFreeResult(hResult); | |
376 | return FALSE; | |
377 | } | |
378 | } | |
22aaa779 VK |
379 | } |
380 | } | |
381 | ||
2f1bc68b | 382 | if (recreateTables) |
22aaa779 | 383 | { |
2f1bc68b | 384 | if (multipleTables) |
22aaa779 | 385 | { |
2f1bc68b VK |
386 | _sntprintf(query, 1024, _T("DROP TABLE tdata_rows_%d\nDROP TABLE tdata_records_%d\nDROP TABLE tdata_%d\n<END>"), id, id, id); |
387 | } | |
388 | else | |
389 | { | |
390 | _sntprintf(query, 256, _T("DROP TABLE tdata_%d\n<END>"), id); | |
391 | } | |
392 | if (!SQLBatch(query)) | |
393 | { | |
394 | if (!g_bIgnoreErrors) | |
395 | { | |
396 | DBFreeResult(hResult); | |
397 | return FALSE; | |
398 | } | |
399 | } | |
400 | ||
401 | if (!CreateTDataTables(id)) | |
402 | { | |
403 | if (!g_bIgnoreErrors) | |
404 | { | |
405 | DBFreeResult(hResult); | |
406 | return FALSE; | |
407 | } | |
22aaa779 VK |
408 | } |
409 | } | |
410 | } | |
411 | DBFreeResult(hResult); | |
412 | } | |
413 | else | |
414 | { | |
415 | if (!g_bIgnoreErrors) | |
416 | return FALSE; | |
417 | } | |
385b1f20 | 418 | return TRUE; |
419 | } | |
420 | ||
c75e9ee4 VK |
421 | /** |
422 | * Convert network masks from dotted decimal format to number of bits | |
423 | */ | |
424 | static BOOL ConvertNetMasks(const TCHAR *table, const TCHAR *column, const TCHAR *idColumn, const TCHAR *idColumn2 = NULL, const TCHAR *condition = NULL) | |
425 | { | |
426 | TCHAR query[256]; | |
fcf91b2e | 427 | |
c75e9ee4 VK |
428 | if (idColumn2 != NULL) |
429 | _sntprintf(query, 256, _T("SELECT %s,%s,%s FROM %s"), idColumn, column, idColumn2, table); | |
430 | else | |
431 | _sntprintf(query, 256, _T("SELECT %s,%s FROM %s"), idColumn, column, table); | |
432 | DB_RESULT hResult = SQLSelect(query); | |
433 | if (hResult == NULL) | |
434 | return FALSE; | |
435 | ||
a19fa589 | 436 | BOOL success = SQLDropColumn(table, column); |
fcf91b2e | 437 | |
c75e9ee4 VK |
438 | if (success) |
439 | { | |
440 | _sntprintf(query, 256, _T("ALTER TABLE %s ADD %s integer"), table, column); | |
441 | success = SQLQuery(query); | |
442 | } | |
443 | ||
444 | if (success) | |
445 | { | |
446 | int count = DBGetNumRows(hResult); | |
447 | for(int i = 0; (i < count) && success; i++) | |
448 | { | |
449 | if (idColumn2 != NULL) | |
450 | { | |
451 | TCHAR id2[256]; | |
fcf91b2e | 452 | _sntprintf(query, 256, _T("UPDATE %s SET %s=%d WHERE %s=%d AND %s='%s'"), |
c75e9ee4 VK |
453 | table, column, BitsInMask(DBGetFieldIPAddr(hResult, i, 1)), idColumn, DBGetFieldLong(hResult, i, 0), |
454 | idColumn2, DBGetField(hResult, i, 2, id2, 256)); | |
455 | } | |
456 | else | |
457 | { | |
fcf91b2e | 458 | _sntprintf(query, 256, _T("UPDATE %s SET %s=%d WHERE %s=%d"), |
c75e9ee4 VK |
459 | table, column, BitsInMask(DBGetFieldIPAddr(hResult, i, 1)), idColumn, DBGetFieldLong(hResult, i, 0)); |
460 | } | |
461 | success = SQLQuery(query); | |
462 | } | |
463 | } | |
464 | ||
465 | DBFreeResult(hResult); | |
466 | return success; | |
467 | } | |
468 | ||
9db92307 | 469 | /** |
470 | * Upgrade from V356 to V357 | |
471 | */ | |
472 | static BOOL H_UpgradeFromV356(int currVersion, int newVersion) | |
473 | { | |
474 | TCHAR comunityString[256]; | |
475 | comunityString[0] = 0; | |
476 | DB_RESULT hResult = SQLSelect(_T("SELECT var_value FROM config WHERE var_name='DefaultCommunityString'")); | |
477 | if (hResult != NULL) | |
478 | { | |
479 | if(DBGetNumRows(hResult) > 0) | |
480 | { | |
481 | DBGetField(hResult, 0, 0, comunityString, 256); | |
482 | } | |
483 | DBFreeResult(hResult); | |
484 | } | |
485 | ||
486 | if(comunityString[0] != 0) | |
487 | { | |
488 | DB_RESULT hResult = SQLSelect(_T("SELECT id, community FROM snmp_communities")); | |
489 | if (hResult != NULL) | |
490 | { | |
491 | CHK_EXEC(SQLQuery(_T("DELETE FROM snmp_communities"))); | |
492 | ||
493 | TCHAR query[1024]; | |
494 | _sntprintf(query, 1024, _T("INSERT INTO snmp_communities (id,community) VALUES(%d,'%s')"), 1, comunityString); | |
495 | CHK_EXEC(SQLQuery(query)); | |
496 | ||
497 | int count = DBGetNumRows(hResult); | |
498 | for(int i = 0; i < count; i++) | |
499 | { | |
500 | _sntprintf(query, 1024, _T("INSERT INTO snmp_communities (id,community) VALUES(%d,'%s')"), i + 2, DBGetField(hResult, i, 1, comunityString, 256)); | |
501 | CHK_EXEC(SQLQuery(query)); | |
502 | } | |
503 | } | |
504 | } | |
505 | ||
506 | CHK_EXEC(SQLQuery(_T("DELETE FROM config WHERE var_name='DefaultCommunityString'"))); | |
507 | ||
508 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='357' WHERE var_name='SchemaVersion'"))); | |
509 | return TRUE; | |
510 | } | |
511 | ||
e1d2050f VK |
512 | /** |
513 | * Upgrade from V355 to V356 | |
514 | */ | |
515 | static BOOL H_UpgradeFromV355(int currVersion, int newVersion) | |
516 | { | |
517 | static TCHAR batch[] = | |
518 | _T("DELETE FROM config WHERE var_name='NumberOfBusinessServicePollers'\n") | |
519 | _T("DELETE FROM config WHERE var_name='NumberOfConditionPollers'\n") | |
520 | _T("DELETE FROM config WHERE var_name='NumberOfConfigurationPollers'\n") | |
521 | _T("DELETE FROM config WHERE var_name='NumberOfDiscoveryPollers'\n") | |
522 | _T("DELETE FROM config WHERE var_name='NumberOfInstancePollers'\n") | |
523 | _T("DELETE FROM config WHERE var_name='NumberOfRoutingTablePollers'\n") | |
524 | _T("DELETE FROM config WHERE var_name='NumberOfStatusPollers'\n") | |
525 | _T("DELETE FROM config WHERE var_name='NumberOfTopologyTablePollers'\n") | |
526 | _T("<END>"); | |
527 | CHK_EXEC(SQLBatch(batch)); | |
528 | ||
529 | CHK_EXEC(CreateConfigParam(_T("PollerThreadPoolBaseSize"), _T("10"), 1, 1)); | |
530 | CHK_EXEC(CreateConfigParam(_T("PollerThreadPoolMaxSize"), _T("250"), 1, 1)); | |
531 | ||
532 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='356' WHERE var_name='SchemaVersion'"))); | |
533 | return TRUE; | |
534 | } | |
535 | ||
9708eff4 VK |
536 | /** |
537 | * Upgrade from V354 to V355 | |
538 | */ | |
539 | static BOOL H_UpgradeFromV354(int currVersion, int newVersion) | |
540 | { | |
541 | static TCHAR batch[] = | |
542 | _T("ALTER TABLE nodes ADD agent_cache_mode char(1)\n") | |
55d81770 | 543 | _T("UPDATE nodes SET agent_cache_mode='0'\n") |
e9902466 | 544 | _T("DELETE FROM config WHERE var_name='ServerID'\n") |
9708eff4 VK |
545 | _T("<END>"); |
546 | CHK_EXEC(SQLBatch(batch)); | |
547 | ||
dec46d8a | 548 | CHK_EXEC(CreateConfigParam(_T("DefaultAgentCacheMode"), _T("2"), 1, 1)); |
9708eff4 VK |
549 | |
550 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='355' WHERE var_name='SchemaVersion'"))); | |
551 | return TRUE; | |
552 | } | |
553 | ||
981d246a VK |
554 | /** |
555 | * Upgrade from V353 to V354 | |
556 | */ | |
557 | static BOOL H_UpgradeFromV353(int currVersion, int newVersion) | |
558 | { | |
559 | CHK_EXEC(ResizeColumn(_T("users"), _T("password"), 127, false)); | |
560 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='354' WHERE var_name='SchemaVersion'"))); | |
561 | return TRUE; | |
562 | } | |
563 | ||
2096c8f0 VK |
564 | /** |
565 | * Upgrade from V352 to V353 | |
566 | */ | |
567 | static BOOL H_UpgradeFromV352(int currVersion, int newVersion) | |
568 | { | |
569 | CHK_EXEC(SQLQuery(_T("ALTER TABLE dci_summary_tables ADD guid varchar(36)"))); | |
570 | CHK_EXEC(GenerateGUID(_T("dci_summary_tables"), _T("id"), _T("guid"))); | |
571 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='353' WHERE var_name='SchemaVersion'"))); | |
572 | return TRUE; | |
573 | } | |
574 | ||
271e3971 VK |
575 | /** |
576 | * Upgrade from V351 to V352 | |
577 | */ | |
578 | static BOOL H_UpgradeFromV351(int currVersion, int newVersion) | |
579 | { | |
580 | CHK_EXEC(SQLQuery(_T("ALTER TABLE object_tools ADD guid varchar(36)"))); | |
581 | CHK_EXEC(GenerateGUID(_T("object_tools"), _T("tool_id"), _T("guid"))); | |
582 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='352' WHERE var_name='SchemaVersion'"))); | |
583 | return TRUE; | |
584 | } | |
585 | ||
ac58ffe9 VK |
586 | /** |
587 | * Upgrade from V350 to V351 | |
588 | */ | |
589 | static BOOL H_UpgradeFromV350(int currVersion, int newVersion) | |
590 | { | |
591 | static TCHAR batch[] = | |
592 | _T("ALTER TABLE access_points ADD ap_index integer\n") | |
593 | _T("UPDATE access_points SET ap_index=0\n") | |
594 | _T("<END>"); | |
595 | CHK_EXEC(SQLBatch(batch)); | |
596 | ||
597 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='351' WHERE var_name='SchemaVersion'"))); | |
598 | return TRUE; | |
599 | } | |
600 | ||
fcf91b2e | 601 | /** |
602 | * Upgrade from V349 to V350 | |
603 | */ | |
604 | static BOOL H_UpgradeFromV349(int currVersion, int newVersion) | |
605 | { | |
606 | switch(g_dbSyntax) | |
607 | { | |
608 | case DB_SYNTAX_ORACLE: | |
a8a0793d VK |
609 | CHK_EXEC(SQLQuery(_T("UPDATE object_properties SET comments = comments || chr(13) || chr(10) || (SELECT description FROM ap_common WHERE ap_common.id = object_properties.object_id) WHERE EXISTS (SELECT description FROM ap_common WHERE ap_common.id = object_properties.object_id AND description IS NOT NULL)"))); |
610 | break; | |
fcf91b2e | 611 | case DB_SYNTAX_DB2: |
a8a0793d VK |
612 | CHK_EXEC(SQLQuery(_T("UPDATE object_properties SET comments = comments || chr(13) || chr(10) || (SELECT description FROM ap_common WHERE ap_common.id = object_properties.object_id) WHERE EXISTS (SELECT description FROM ap_common WHERE ap_common.id = object_properties.object_id AND description IS NOT NULL AND description <> '')"))); |
613 | break; | |
96e03924 | 614 | case DB_SYNTAX_MSSQL: |
b69710b9 | 615 | CHK_EXEC(SQLQuery(_T("UPDATE object_properties SET comments = CAST(comments AS varchar(4000)) + char(13) + char(10) + CAST((SELECT description FROM ap_common WHERE ap_common.id = object_properties.object_id) AS varchar(4000)) WHERE EXISTS (SELECT description FROM ap_common WHERE ap_common.id = object_properties.object_id AND description IS NOT NULL AND datalength(description) <> 0)"))); |
fcf91b2e | 616 | break; |
617 | case DB_SYNTAX_PGSQL: | |
a8a0793d | 618 | CHK_EXEC(SQLQuery(_T("UPDATE object_properties SET comments = comments || '\\015\\012' || (SELECT description FROM ap_common WHERE ap_common.id = object_properties.object_id) WHERE EXISTS (SELECT description FROM ap_common WHERE ap_common.id = object_properties.object_id AND description IS NOT NULL AND description <> '')"))); |
fcf91b2e | 619 | break; |
620 | case DB_SYNTAX_SQLITE: | |
a8a0793d | 621 | CHK_EXEC(SQLQuery(_T("UPDATE object_properties SET comments = comments || char(13,10) || (SELECT description FROM ap_common WHERE ap_common.id = object_properties.object_id) WHERE EXISTS (SELECT description FROM ap_common WHERE ap_common.id = object_properties.object_id AND description IS NOT NULL AND description <> '')"))); |
fcf91b2e | 622 | break; |
623 | case DB_SYNTAX_MYSQL: | |
a8a0793d | 624 | CHK_EXEC(SQLQuery(_T("UPDATE object_properties, ap_common SET object_properties.comments=CONCAT(object_properties.comments, '\\r\\n', ap_common.description) WHERE object_properties.object_id=ap_common.id AND (ap_common.description!='' AND ap_common.description IS NOT NULL)"))); |
fcf91b2e | 625 | break; |
626 | default: | |
96e03924 | 627 | break; |
fcf91b2e | 628 | } |
629 | ||
3f543e56 | 630 | CHK_EXEC(SQLDropColumn(_T("ap_common"), _T("description"))); |
fcf91b2e | 631 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='350' WHERE var_name='SchemaVersion'"))); |
632 | return TRUE; | |
633 | } | |
634 | ||
b06ae508 VK |
635 | /** |
636 | * Upgrade from V348 to V349 | |
637 | */ | |
638 | static BOOL H_UpgradeFromV348(int currVersion, int newVersion) | |
639 | { | |
640 | CHK_EXEC(SQLQuery(_T("DELETE FROM config WHERE var_name='HouseKeepingInterval'"))); | |
641 | CHK_EXEC(CreateConfigParam(_T("HousekeeperStartTime"), _T("02:00"), 1, 1)); | |
642 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='349' WHERE var_name='SchemaVersion'"))); | |
643 | return TRUE; | |
644 | } | |
645 | ||
c30c0c0f VK |
646 | /** |
647 | * Upgrade from V347 to V348 | |
648 | */ | |
649 | static BOOL H_UpgradeFromV347(int currVersion, int newVersion) | |
650 | { | |
651 | CHK_EXEC(CreateEventTemplate(EVENT_IF_IPADDR_ADDED, _T("SYS_IF_IPADDR_ADDED"), SEVERITY_NORMAL, EF_LOG, | |
652 | _T("IP address %3/%4 added to interface \"%2\""), | |
653 | _T("Generated when IP address added to interface.\r\n") | |
654 | _T("Parameters:\r\n") | |
655 | _T(" 1) Interface object ID\r\n") | |
656 | _T(" 2) Interface name\r\n") | |
657 | _T(" 3) IP address\r\n") | |
658 | _T(" 4) Network mask\r\n") | |
659 | _T(" 5) Interface index"))); | |
660 | ||
661 | CHK_EXEC(CreateEventTemplate(EVENT_IF_IPADDR_DELETED, _T("SYS_IF_IPADDR_DELETED"), SEVERITY_NORMAL, EF_LOG, | |
662 | _T("IP address %3/%4 deleted from interface \"%2\""), | |
663 | _T("Generated when IP address deleted from interface.\r\n") | |
664 | _T("Parameters:\r\n") | |
665 | _T(" 1) Interface object ID\r\n") | |
666 | _T(" 2) Interface name\r\n") | |
667 | _T(" 3) IP address\r\n") | |
668 | _T(" 4) Network mask\r\n") | |
669 | _T(" 5) Interface index"))); | |
670 | ||
671 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='348' WHERE var_name='SchemaVersion'"))); | |
672 | return TRUE; | |
673 | } | |
674 | ||
675 | /** | |
676 | * Upgrade from V346 to V347 | |
677 | */ | |
678 | static BOOL H_UpgradeFromV346(int currVersion, int newVersion) | |
679 | { | |
680 | CHK_EXEC(CreateTable( | |
681 | _T("CREATE TABLE interface_address_list (") | |
682 | _T(" iface_id integer not null,") | |
683 | _T(" ip_addr varchar(48) not null,") | |
684 | _T(" ip_netmask integer not null,") | |
685 | _T(" PRIMARY KEY(iface_id,ip_addr))"))); | |
686 | ||
687 | DB_RESULT hResult = SQLSelect(_T("SELECT id,ip_addr,ip_netmask FROM interfaces WHERE ip_addr<>'0.0.0.0'")); | |
688 | if (hResult != NULL) | |
689 | { | |
690 | int count = DBGetNumRows(hResult); | |
691 | for(int i = 0; i < count; i++) | |
692 | { | |
693 | TCHAR query[256], addr[64]; | |
694 | _sntprintf(query, 256, _T("INSERT INTO interface_address_list (iface_id,ip_addr,ip_netmask) VALUES (%d,'%s',%d)"), | |
695 | DBGetFieldLong(hResult, i, 0), DBGetField(hResult, i, 1, addr, 64), DBGetFieldLong(hResult, i, 2)); | |
696 | CHK_EXEC(SQLQuery(query)); | |
697 | } | |
698 | DBFreeResult(hResult); | |
699 | } | |
700 | else | |
701 | { | |
702 | if (!g_bIgnoreErrors) | |
703 | return FALSE; | |
704 | } | |
705 | ||
706 | static TCHAR batch[] = | |
707 | _T("ALTER TABLE interfaces DROP COLUMN ip_addr\n") | |
708 | _T("ALTER TABLE interfaces DROP COLUMN ip_netmask\n") | |
709 | _T("<END>"); | |
710 | CHK_EXEC(SQLBatch(batch)); | |
711 | ||
712 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='347' WHERE var_name='SchemaVersion'"))); | |
713 | return TRUE; | |
714 | } | |
715 | ||
c75e9ee4 VK |
716 | /** |
717 | * Upgrade from V345 to V346 | |
718 | */ | |
719 | static BOOL H_UpgradeFromV345(int currVersion, int newVersion) | |
720 | { | |
b69710b9 VK |
721 | if (g_dbSyntax == DB_SYNTAX_MSSQL) |
722 | { | |
723 | CHK_EXEC(DropPrimaryKey(_T("cluster_sync_subnets"))); | |
724 | CHK_EXEC(DropPrimaryKey(_T("address_lists"))); | |
725 | CHK_EXEC(DropPrimaryKey(_T("vpn_connector_networks"))); | |
726 | } | |
727 | ||
728 | CHK_EXEC(ResizeColumn(_T("cluster_sync_subnets"), _T("subnet_addr"), 48, false)); | |
729 | CHK_EXEC(ResizeColumn(_T("cluster_resources"), _T("ip_addr"), 48, false)); | |
730 | CHK_EXEC(ResizeColumn(_T("subnets"), _T("ip_addr"), 48, false)); | |
731 | CHK_EXEC(ResizeColumn(_T("interfaces"), _T("ip_addr"), 48, false)); | |
732 | CHK_EXEC(ResizeColumn(_T("network_services"), _T("ip_bind_addr"), 48, false)); | |
733 | CHK_EXEC(ResizeColumn(_T("vpn_connector_networks"), _T("ip_addr"), 48, false)); | |
734 | CHK_EXEC(ResizeColumn(_T("snmp_trap_log"), _T("ip_addr"), 48, false)); | |
735 | CHK_EXEC(ResizeColumn(_T("address_lists"), _T("addr1"), 48, false)); | |
736 | CHK_EXEC(ResizeColumn(_T("address_lists"), _T("addr2"), 48, false)); | |
737 | CHK_EXEC(ResizeColumn(_T("nodes"), _T("primary_ip"), 48, false)); | |
c75e9ee4 VK |
738 | |
739 | CHK_EXEC(ConvertNetMasks(_T("cluster_sync_subnets"), _T("subnet_mask"), _T("cluster_id"))); | |
740 | CHK_EXEC(ConvertNetMasks(_T("subnets"), _T("ip_netmask"), _T("id"))); | |
741 | CHK_EXEC(ConvertNetMasks(_T("interfaces"), _T("ip_netmask"), _T("id"))); | |
742 | CHK_EXEC(ConvertNetMasks(_T("vpn_connector_networks"), _T("ip_netmask"), _T("vpn_id"), _T("ip_addr"))); | |
743 | ||
744 | DB_RESULT hResult = SQLSelect(_T("SELECT community_id,addr_type,addr1,addr2 FROM address_lists WHERE list_type=0")); | |
745 | if (hResult != NULL) | |
746 | { | |
747 | int count = DBGetNumRows(hResult); | |
748 | if (count > 0) | |
749 | { | |
750 | CHK_EXEC(SQLQuery(_T("DELETE FROM address_lists WHERE list_type=0"))); | |
751 | ||
752 | for(int i = 0; i < count; i++) | |
753 | { | |
754 | TCHAR query[256], addr[64]; | |
755 | _sntprintf(query, 256, _T("INSERT INTO address_lists (list_type,community_id,addr_type,addr1,addr2) VALUES (0,%d,%d,'%s','%d')"), | |
756 | DBGetFieldLong(hResult, i, 0), DBGetFieldLong(hResult, i, 1), DBGetField(hResult, i, 2, addr, 64), | |
757 | BitsInMask(DBGetFieldIPAddr(hResult, i, 3))); | |
758 | CHK_EXEC(SQLQuery(query)); | |
759 | } | |
760 | } | |
761 | DBFreeResult(hResult); | |
762 | } | |
763 | else | |
764 | { | |
765 | if (!g_bIgnoreErrors) | |
766 | return FALSE; | |
767 | } | |
768 | ||
b69710b9 VK |
769 | if (g_dbSyntax == DB_SYNTAX_MSSQL) |
770 | { | |
771 | CHK_EXEC(SQLQuery(_T("ALTER TABLE cluster_sync_subnets ADD CONSTRAINT pk_cluster_sync_subnets PRIMARY KEY (cluster_id,subnet_addr)"))); | |
772 | CHK_EXEC(SQLQuery(_T("ALTER TABLE address_lists ADD CONSTRAINT pk_address_lists PRIMARY KEY (list_type,community_id,addr_type,addr1,addr2)"))); | |
773 | CHK_EXEC(SQLQuery(_T("ALTER TABLE vpn_connector_networks ADD CONSTRAINT pk_vpn_connector_networks PRIMARY KEY (vpn_id,ip_addr)"))); | |
774 | } | |
775 | ||
c75e9ee4 VK |
776 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='346' WHERE var_name='SchemaVersion'"))); |
777 | return TRUE; | |
778 | } | |
779 | ||
805171de VK |
780 | /** |
781 | * Upgrade from V344 to V345 | |
782 | */ | |
783 | static BOOL H_UpgradeFromV344(int currVersion, int newVersion) | |
784 | { | |
785 | CHK_EXEC(CreateConfigParam(_T("NumberOfInstancePollers"), _T("10"), 1, 1)); | |
786 | CHK_EXEC(CreateConfigParam(_T("InstancePollingInterval"), _T("600"), 1, 1)); | |
787 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='345' WHERE var_name='SchemaVersion'"))); | |
788 | return TRUE; | |
789 | } | |
790 | ||
e95680e5 VK |
791 | /** |
792 | * Upgrade from V343 to V344 | |
793 | */ | |
794 | static BOOL H_UpgradeFromV343(int currVersion, int newVersion) | |
795 | { | |
c30c0c0f | 796 | static TCHAR batch[] = |
e95680e5 VK |
797 | _T("ALTER TABLE interfaces ADD mtu integer\n") |
798 | _T("ALTER TABLE interfaces ADD alias varchar(255)\n") | |
799 | _T("UPDATE interfaces SET mtu=0\n") | |
800 | _T("<END>"); | |
801 | CHK_EXEC(SQLBatch(batch)); | |
802 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='344' WHERE var_name='SchemaVersion'"))); | |
803 | return TRUE; | |
804 | } | |
805 | ||
d140955e VK |
806 | /** |
807 | * Upgrade from V342 to V343 | |
808 | */ | |
809 | static BOOL H_UpgradeFromV342(int currVersion, int newVersion) | |
810 | { | |
811 | if (g_dbSyntax != DB_SYNTAX_MSSQL) | |
812 | { | |
813 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='CREATE INDEX idx_idata_%d_id_timestamp ON idata_%d(item_id,idata_timestamp DESC)' WHERE var_name='IDataIndexCreationCommand_0'"))); | |
5096f5a5 | 814 | CHK_EXEC(DBCommit(g_hCoreDB)); // do reindexing outside current transaction |
d140955e | 815 | ReindexIData(); |
5096f5a5 | 816 | CHK_EXEC(DBBegin(g_hCoreDB)); |
d140955e VK |
817 | } |
818 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='343' WHERE var_name='SchemaVersion'"))); | |
819 | return TRUE; | |
820 | } | |
821 | ||
4b70cb26 | 822 | /** |
823 | * Upgrade from V341 to V342 | |
824 | */ | |
825 | static BOOL H_UpgradeFromV341(int currVersion, int newVersion) | |
826 | { | |
d140955e | 827 | CHK_EXEC(SQLQuery(_T("ALTER TABLE object_tools ADD tool_filter $SQL:TEXT"))); |
4b70cb26 | 828 | DB_RESULT hResult = SQLSelect(_T("SELECT tool_id, matching_oid FROM object_tools")); |
829 | if (hResult != NULL) | |
830 | { | |
831 | int count = DBGetNumRows(hResult); | |
832 | for(int i = 0; i < count; i++) | |
833 | { | |
834 | TCHAR *oid = DBGetField(hResult, i, 1, NULL, 0); | |
835 | if (oid == NULL || !_tcscmp(oid, _T(" "))) | |
836 | { | |
837 | oid = _tcsdup(_T("")); | |
838 | } | |
839 | else | |
840 | { | |
841 | TCHAR *newConfig = (TCHAR *)malloc((_tcslen(oid) + 512) * sizeof(TCHAR)); | |
842 | _tcscpy(newConfig, _T("<objectToolFilter>")); | |
843 | _tcscat(newConfig, _T("<snmpOid>")); | |
844 | _tcscat(newConfig, oid); | |
845 | _tcscat(newConfig, _T("</snmpOid>")); | |
846 | _tcscat(newConfig, _T("</objectToolFilter>")); | |
847 | ||
848 | DB_STATEMENT statment = DBPrepare(g_hCoreDB, _T("UPDATE object_tools SET tool_filter=? WHERE tool_id=?")); | |
849 | if (statment != NULL) | |
850 | { | |
851 | DBBind(statment, 1, DB_SQLTYPE_TEXT, newConfig, DB_BIND_STATIC); | |
852 | DBBind(statment, 2, DB_SQLTYPE_INTEGER, DBGetFieldULong(hResult, i, 0)); | |
853 | CHK_EXEC(DBExecute(statment)); | |
854 | DBFreeStatement(statment); | |
855 | } | |
856 | else | |
857 | { | |
858 | if (!g_bIgnoreErrors) | |
859 | return FALSE; | |
860 | } | |
861 | } | |
862 | } | |
863 | } | |
a19fa589 | 864 | CHK_EXEC(SQLDropColumn(_T("object_tools"), _T("matching_oid"))); //delete old column |
4b70cb26 | 865 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='342' WHERE var_name='SchemaVersion'"))); |
866 | return TRUE; | |
867 | } | |
868 | ||
56fa1092 VK |
869 | /** |
870 | * Upgrade from V340 to V341 | |
871 | */ | |
872 | static BOOL H_UpgradeFromV340(int currVersion, int newVersion) | |
873 | { | |
874 | static TCHAR batch[] = | |
875 | _T("ALTER TABLE object_properties ADD country varchar(63)\n") | |
876 | _T("ALTER TABLE object_properties ADD city varchar(63)\n") | |
877 | _T("ALTER TABLE object_properties ADD street_address varchar(255)\n") | |
878 | _T("ALTER TABLE object_properties ADD postcode varchar(31)\n") | |
879 | _T("<END>"); | |
880 | CHK_EXEC(SQLBatch(batch)); | |
881 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='341' WHERE var_name='SchemaVersion'"))); | |
882 | return TRUE; | |
883 | } | |
884 | ||
b00236dd | 885 | /** |
886 | * Upgrade from V339 to V340 | |
887 | */ | |
888 | static BOOL H_UpgradeFromV339(int currVersion, int newVersion) | |
889 | { | |
890 | CHK_EXEC(CreateConfigParam(_T("LdapPageSize"), _T("1000"), 1, 0)); | |
891 | CHK_EXEC(SQLQuery(_T("UPDATE config SET var_value='1' WHERE var_name='LdapUserDeleteAction'"))); | |
892 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='340' WHERE var_name='SchemaVersion'"))); | |
893 | return TRUE; | |
894 | } | |
895 | ||
815638fe VK |
896 | /** |
897 | * Upgrade from V338 to V339 | |
898 | */ | |
899 | static BOOL H_UpgradeFromV338(int currVersion, int newVersion) | |
900 | { | |
901 | CHK_EXEC(CreateConfigParam(_T("EscapeLocalCommands"), _T("0"), 1, 0)); | |
902 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='339' WHERE var_name='SchemaVersion'"))); | |
903 | return TRUE; | |
904 | } | |
905 | ||
9208c84b VK |
906 | /** |
907 | * Upgrade from V337 to V338 | |
908 | */ | |
909 | static BOOL H_UpgradeFromV337(int currVersion, int newVersion) | |
910 | { | |
911 | static TCHAR batch[] = | |
912 | _T("ALTER TABLE nodes ADD icmp_proxy integer\n") | |
913 | _T("UPDATE nodes SET icmp_proxy=0\n") | |
914 | _T("<END>"); | |
915 | CHK_EXEC(SQLBatch(batch)); | |
916 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='338' WHERE var_name='SchemaVersion'"))); | |
917 | return TRUE; | |
918 | } | |
919 | ||
d368074d VK |
920 | /** |
921 | * Upgrade from V336 to V337 | |
922 | */ | |
923 | static BOOL H_UpgradeFromV336(int currVersion, int newVersion) | |
924 | { | |
925 | CHK_EXEC(CreateConfigParam(_T("SyslogNodeMatchingPolicy"), _T("0"), 1, 1)); | |
926 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='337' WHERE var_name='SchemaVersion'"))); | |
927 | return TRUE; | |
928 | } | |
929 | ||
2b01f47c | 930 | /** |
931 | * Upgrade from V335 to V336 | |
932 | */ | |
933 | static BOOL H_UpgradeFromV335(int currVersion, int newVersion) | |
934 | { | |
b69710b9 VK |
935 | CHK_EXEC(ResizeColumn(_T("network_map_links"), _T("connector_name1"), 255, true)); |
936 | CHK_EXEC(ResizeColumn(_T("network_map_links"), _T("connector_name2"), 255, true)); | |
2b01f47c | 937 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='336' WHERE var_name='SchemaVersion'"))); |
938 | return TRUE; | |
939 | } | |
940 | ||
b30bb1bc | 941 | /** |
942 | * Upgrade from V334 to V335 | |
943 | */ | |
944 | static BOOL H_UpgradeFromV334(int currVersion, int newVersion) | |
945 | { | |
17b15353 VK |
946 | CHK_EXEC(CreateEventTemplate(EVENT_IF_MASK_CHANGED, _T("SYS_IF_MASK_CHANGED"), SEVERITY_NORMAL, EF_LOG, |
947 | _T("Interface \"%2\" changed mask from %6 to %4 (IP Addr: %3/%4, IfIndex: %5)"), | |
948 | _T("Generated when when network mask on interface is changed.\r\n") | |
949 | _T("Parameters:\r\n") | |
950 | _T(" 1) Interface object ID\r\n") | |
951 | _T(" 2) Interface name\r\n") | |
952 | _T(" 3) IP address\r\n") | |
953 | _T(" 4) New network mask\r\n") | |
954 | _T(" 5) Interface index\r\n") | |
955 | _T(" 6) Old network mask"))); | |
b30bb1bc | 956 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='335' WHERE var_name='SchemaVersion'"))); |
957 | return TRUE; | |
958 | } | |
959 | ||
39e60274 AK |
960 | /** |
961 | * Upgrade from V333 to V334 | |
962 | */ | |
963 | static BOOL H_UpgradeFromV333(int currVersion, int newVersion) | |
964 | { | |
965 | CHK_EXEC(SetColumnNullable(_T("user_groups"), _T("description"))); | |
966 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='334' WHERE var_name='SchemaVersion'"))); | |
967 | return TRUE; | |
968 | } | |
969 | ||
4899db4d | 970 | /** |
971 | * Upgrade from V332 to V333 | |
972 | */ | |
973 | static BOOL H_UpgradeFromV332(int currVersion, int newVersion) | |
974 | { | |
975 | static TCHAR batch[] = | |
976 | _T("INSERT INTO metadata (var_name,var_value)") | |
977 | _T(" VALUES ('LocationHistory','CREATE TABLE gps_history_%d (latitude varchar(20), longitude varchar(20), accuracy integer not null, start_timestamp integer not null, end_timestamp integer not null, PRIMARY KEY(start_timestamp))')\n") | |
978 | _T("<END>"); | |
979 | CHK_EXEC(SQLBatch(batch)); | |
980 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='333' WHERE var_name='SchemaVersion'"))); | |
981 | return TRUE; | |
982 | } | |
983 | ||
a6312bd6 VK |
984 | /** |
985 | * Upgrade from V331 to V332 | |
986 | */ | |
987 | static BOOL H_UpgradeFromV331(int currVersion, int newVersion) | |
988 | { | |
989 | CHK_EXEC(SQLQuery(_T("UPDATE items SET instd_data=instance WHERE node_id=template_id AND instd_method=0"))); | |
990 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='332' WHERE var_name='SchemaVersion'"))); | |
991 | return TRUE; | |
992 | } | |
993 | ||
2a964810 VK |
994 | /** |
995 | * Upgrade from V330 to V331 | |
996 | */ | |
997 | static BOOL H_UpgradeFromV330(int currVersion, int newVersion) | |
998 | { | |
999 | if (g_dbSyntax == DB_SYNTAX_ORACLE) | |
1000 | { | |
1001 | CHK_EXEC(SQLQuery(_T("ALTER TABLE audit_log ADD session_id integer DEFAULT 0 NOT NULL"))); | |
1002 | } | |
1003 | else | |
1004 | { | |
1005 | CHK_EXEC(SQLQuery(_T("ALTER TABLE audit_log ADD session_id integer NOT NULL DEFAULT 0"))); | |
1006 | } | |
1007 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='331' WHERE var_name='SchemaVersion'"))); | |
1008 | return TRUE; | |
1009 | } | |
1010 | ||
b66098ac VK |
1011 | /** |
1012 | * Upgrade from V329 to V330 | |
1013 | */ | |
1014 | static BOOL H_UpgradeFromV329(int currVersion, int newVersion) | |
1015 | { | |
1016 | CHK_EXEC(CreateConfigParam(_T("AlarmListDisplayLimit"), _T("4096"), 1, 0)); | |
1017 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='330' WHERE var_name='SchemaVersion'"))); | |
1018 | return TRUE; | |
1019 | } | |
1020 | ||
4016c0df | 1021 | /** |
1022 | * Upgrade from V328 to V329 | |
1023 | */ | |
1024 | static BOOL H_UpgradeFromV328(int currVersion, int newVersion) | |
1025 | { | |
b6005694 VK |
1026 | CHK_EXEC(SQLQuery(_T("ALTER TABLE items ADD comments $SQL:TEXT"))); |
1027 | CHK_EXEC(SQLQuery(_T("ALTER TABLE dc_tables ADD comments $SQL:TEXT"))); | |
4016c0df | 1028 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='329' WHERE var_name='SchemaVersion'"))); |
1029 | return TRUE; | |
1030 | } | |
1031 | ||
385b1f20 | 1032 | /** |
1033 | * Upgrade from V327 to V328 | |
1034 | */ | |
1035 | static BOOL H_UpgradeFromV327(int currVersion, int newVersion) | |
1036 | { | |
d368074d | 1037 | CHK_EXEC(CreateConfigParam(_T("ResolveDNSToIPOnStatusPoll"), _T("0"), 1, 1)); |
385b1f20 | 1038 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='328' WHERE var_name='SchemaVersion'"))); |
1039 | return TRUE; | |
1040 | } | |
173c189d VK |
1041 | |
1042 | /** | |
1043 | * Upgrade from V326 to V327 | |
1044 | */ | |
1045 | static BOOL H_UpgradeFromV326(int currVersion, int newVersion) | |
1046 | { | |
3fa5e14a VK |
1047 | CHK_EXEC(DropPrimaryKey(_T("network_map_links"))); |
1048 | CHK_EXEC(SQLQuery(_T("CREATE INDEX idx_network_map_links_map_id ON network_map_links(map_id)"))); | |
173c189d | 1049 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='327' WHERE var_name='SchemaVersion'"))); |
22aaa779 VK |
1050 | return TRUE; |
1051 | } | |
1052 | ||
ade20a86 | 1053 | /** |
1054 | * Upgrade from V325 to V326 | |
1055 | */ | |
1056 | static BOOL H_UpgradeFromV325(int currVersion, int newVersion) | |
1057 | { | |
ade20a86 | 1058 | static TCHAR batch[] = |
1059 | _T("ALTER TABLE network_map_links DROP COLUMN color\n") | |
1060 | _T("ALTER TABLE network_map_links DROP COLUMN status_object\n") | |
1061 | _T("ALTER TABLE network_map_links DROP COLUMN routing\n") | |
1062 | _T("ALTER TABLE network_map_links DROP COLUMN bend_points\n") | |
1063 | _T("<END>"); | |
1064 | CHK_EXEC(SQLBatch(batch)); | |
1065 | ||
1066 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='326' WHERE var_name='SchemaVersion'"))); | |
1067 | return TRUE; | |
1068 | } | |
1069 | ||
1070 | /** | |
1071 | * Upgrade from V324 to V325 | |
1072 | */ | |
1073 | static BOOL H_UpgradeFromV324(int currVersion, int newVersion) | |
1074 | { | |
1075 | //move map link configuration to xml | |
1076 | ||
1077 | DB_RESULT hResult = SQLSelect(_T("SELECT map_id, element1, element2, element_data, color, status_object, routing, bend_points FROM network_map_links")); | |
1078 | if (hResult != NULL) | |
1079 | { | |
1080 | int count = DBGetNumRows(hResult); | |
1081 | for(int i = 0; i < count; i++) | |
1082 | { | |
c55ab1c2 VK |
1083 | TCHAR *config = DBGetField(hResult, i, 3, NULL, 0); |
1084 | if (config == NULL) | |
1085 | config = _tcsdup(_T("")); | |
ade20a86 | 1086 | UINT32 color = DBGetFieldULong(hResult, i, 4); |
1087 | UINT32 statusObject = DBGetFieldULong(hResult, i, 5); | |
1088 | UINT32 routing = DBGetFieldULong(hResult, i, 6); | |
1089 | TCHAR bendPoints[1024]; | |
1090 | DBGetField(hResult, i, 7, bendPoints, 1024); | |
1091 | ||
c55ab1c2 | 1092 | TCHAR *newConfig = (TCHAR *)malloc((_tcslen(config) + 4096) * sizeof(TCHAR)); |
ade20a86 | 1093 | _tcscpy(newConfig, _T("<config>")); |
1094 | TCHAR* c1 = _tcsstr(config, _T("<dciList")); | |
1095 | TCHAR* c2 = _tcsstr(config, _T("</dciList>")); | |
1096 | if(c1 != NULL && c2!= NULL) | |
1097 | { | |
1098 | *c2 = 0; | |
1099 | _tcscat(newConfig, c1); | |
1100 | _tcscat(newConfig, _T("</dciList>")); | |
1101 | } | |
1102 | ||
1103 | TCHAR tmp[2048]; | |
1104 | _sntprintf(tmp, 2048, _T("<color>%d</color>"), color), | |
1105 | _tcscat(newConfig, tmp); | |
1106 | ||
c55ab1c2 | 1107 | if (statusObject != 0) |
ade20a86 | 1108 | { |
1109 | _sntprintf(tmp, 2048, _T("<objectStatusList length=\"1\"><long>%d</long></objectStatusList>"), statusObject); | |
1110 | _tcscat(newConfig, tmp); | |
1111 | } | |
1112 | ||
1113 | _sntprintf(tmp, 2048, _T("<routing>%d</routing>"), routing); | |
1114 | _tcscat(newConfig, tmp); | |
1115 | ||
c55ab1c2 | 1116 | if (routing == 3 && bendPoints[0] != 0) |
ade20a86 | 1117 | { |
1118 | count = 1; | |
30b86580 | 1119 | for(size_t j = 0; j < _tcslen(bendPoints); j++) |
ade20a86 | 1120 | { |
c55ab1c2 | 1121 | if (bendPoints[j] == _T(',')) |
ade20a86 | 1122 | count++; |
1123 | } | |
1124 | _sntprintf(tmp, 2048, _T("<bendPoints length=\"%d\">%s</bendPoints>"), count, bendPoints); | |
1125 | _tcscat(newConfig, tmp); | |
1126 | } | |
1127 | _tcscat(newConfig, _T("</config>")); | |
1128 | ||
1129 | safe_free(config); | |
1130 | DB_STATEMENT statment = DBPrepare(g_hCoreDB, _T("UPDATE network_map_links SET element_data=? WHERE map_id=? AND element1=? AND element2=?")); | |
e196e5d8 VK |
1131 | if (statment != NULL) |
1132 | { | |
1133 | DBBind(statment, 1, DB_SQLTYPE_TEXT, newConfig, DB_BIND_STATIC); | |
1134 | DBBind(statment, 2, DB_SQLTYPE_INTEGER, DBGetFieldULong(hResult, i, 0)); | |
1135 | DBBind(statment, 3, DB_SQLTYPE_INTEGER, DBGetFieldULong(hResult, i, 1)); | |
1136 | DBBind(statment, 4, DB_SQLTYPE_INTEGER, DBGetFieldULong(hResult, i, 2)); | |
1137 | CHK_EXEC(DBExecute(statment)); | |
1138 | DBFreeStatement(statment); | |
1139 | } | |
1140 | else | |
1141 | { | |
1142 | if (!g_bIgnoreErrors) | |
1143 | return FALSE; | |
1144 | } | |
081bba09 | 1145 | safe_free(newConfig); |
ade20a86 | 1146 | } |
1147 | DBFreeResult(hResult); | |
1148 | } | |
1149 | ||
1150 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='325' WHERE var_name='SchemaVersion'"))); | |
1151 | return TRUE; | |
1152 | } | |
1153 | ||
2f1bc68b VK |
1154 | /** |
1155 | * Upgrade from V323 to V324 | |
1156 | */ | |
1157 | static BOOL H_UpgradeFromV323(int currVersion, int newVersion) | |
1158 | { | |
a9f5aa55 | 1159 | if (!MetaDataReadInt(_T("ValidTDataIndex"), 0)) // check if schema is already correct |
2f1bc68b VK |
1160 | { |
1161 | TCHAR query[1024]; | |
ade20a86 | 1162 | _sntprintf(query, 1024, |
66717659 | 1163 | _T("UPDATE metadata SET var_value='CREATE TABLE tdata_records_%%d (record_id %s not null,row_id %s not null,instance varchar(255) null,PRIMARY KEY(row_id),FOREIGN KEY (record_id) REFERENCES tdata_%%d(record_id) ON DELETE CASCADE)' WHERE var_name='TDataTableCreationCommand_1'"), |
2a964810 | 1164 | g_pszSqlType[g_dbSyntax][SQL_TYPE_INT64], g_pszSqlType[g_dbSyntax][SQL_TYPE_INT64]); |
2f1bc68b VK |
1165 | CHK_EXEC(SQLQuery(query)); |
1166 | ||
1167 | RecreateTData(_T("nodes"), true, true); | |
1168 | RecreateTData(_T("clusters"), true, true); | |
1169 | RecreateTData(_T("mobile_devices"), true, true); | |
1170 | } | |
1171 | ||
a9f5aa55 | 1172 | CHK_EXEC(SQLQuery(_T("DELETE FROM metadata WHERE var_name='ValidTDataIndex'"))); |
2f1bc68b VK |
1173 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='324' WHERE var_name='SchemaVersion'"))); |
1174 | return TRUE; | |
1175 | } | |
1176 | ||
c8076b19 VK |
1177 | /** |
1178 | * Upgrade from V322 to V323 | |
1179 | */ | |
1180 | static BOOL H_UpgradeFromV322(int currVersion, int newVersion) | |
1181 | { | |
1182 | CHK_EXEC(CreateConfigParam(_T("ProcessTrapsFromUnmanagedNodes"), _T("0"), 1, 1)); | |
1183 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='323' WHERE var_name='SchemaVersion'"))); | |
1184 | return TRUE; | |
1185 | } | |
1186 | ||
f4d8fe18 | 1187 | /** |
1188 | * Upgrade from V321 to V322 | |
1189 | */ | |
1190 | static BOOL H_UpgradeFromV321(int currVersion, int newVersion) | |
1191 | { | |
2a964810 | 1192 | switch(g_dbSyntax) |
f4d8fe18 | 1193 | { |
1194 | case DB_SYNTAX_DB2: | |
87104c6a VK |
1195 | CHK_EXEC(SQLBatch( |
1196 | _T("ALTER TABLE users ALTER COLUMN system_access SET DATA TYPE $SQL:INT64\n") | |
1197 | _T("ALTER TABLE user_groups ALTER COLUMN system_access SET DATA TYPE $SQL:INT64\n") | |
1198 | _T("<END>"))); | |
f4d8fe18 | 1199 | break; |
1200 | case DB_SYNTAX_MSSQL: | |
87104c6a VK |
1201 | CHK_EXEC(SQLBatch( |
1202 | _T("ALTER TABLE users ALTER COLUMN system_access $SQL:INT64\n") | |
1203 | _T("ALTER TABLE user_groups ALTER COLUMN system_access $SQL:INT64\n") | |
1204 | _T("<END>"))); | |
f4d8fe18 | 1205 | break; |
1206 | case DB_SYNTAX_PGSQL: | |
87104c6a | 1207 | CHK_EXEC(SQLBatch( |
d27fb10d VK |
1208 | _T("ALTER TABLE users ALTER COLUMN system_access TYPE $SQL:INT64\n") |
1209 | _T("ALTER TABLE user_groups ALTER COLUMN system_access TYPE $SQL:INT64\n") | |
87104c6a | 1210 | _T("<END>"))); |
f4d8fe18 | 1211 | break; |
1212 | case DB_SYNTAX_SQLITE: | |
87104c6a VK |
1213 | CHK_EXEC(SQLBatch( |
1214 | _T("CREATE TABLE temp_users AS SELECT * FROM users\n") | |
1215 | _T("DROP TABLE users\n") | |
1216 | _T("CREATE TABLE users (id integer not null, guid varchar(36) not null, name varchar(63) not null, password varchar(48) not null, system_access $SQL:INT64 not null, flags integer not null,") | |
1217 | _T(" full_name varchar(127) null, description varchar(255) null, grace_logins integer not null, auth_method integer not null, cert_mapping_method integer not null, cert_mapping_data $SQL:TEXT null,") | |
1218 | _T(" auth_failures integer not null, last_passwd_change integer not null, min_passwd_length integer not null, disabled_until integer not null, last_login integer not null, password_history $SQL:TEXT null,") | |
1219 | _T(" xmpp_id varchar(127) null, ldap_dn $SQL:TEXT null, PRIMARY KEY(id))\n") | |
1220 | _T("INSERT INTO users SELECT * FROM temp_users\n") | |
1221 | _T("DROP TABLE temp_users\n") | |
1222 | _T("CREATE TABLE temp_user_groups AS SELECT * FROM user_groups\n") | |
1223 | _T("DROP TABLE user_groups\n") | |
1224 | _T("CREATE TABLE user_groups (id integer not null, guid varchar(36) not null, name varchar(63) not null, system_access $SQL:INT64 not null, flags integer not null,") | |
1225 | _T(" description varchar(255) not null, ldap_dn $SQL:TEXT null, PRIMARY KEY(id))\n") | |
1226 | _T("INSERT INTO user_groups SELECT * FROM temp_user_groups\n") | |
1227 | _T("DROP TABLE temp_user_groups\n") | |
1228 | _T("<END>"))); | |
f4d8fe18 | 1229 | break; |
52162395 VK |
1230 | case DB_SYNTAX_ORACLE: |
1231 | // no changes needed | |
1232 | break; | |
f4d8fe18 | 1233 | default: |
87104c6a VK |
1234 | CHK_EXEC(SQLBatch( |
1235 | _T("ALTER TABLE users MODIFY system_access $SQL:INT64\n") | |
1236 | _T("ALTER TABLE user_groups MODIFY system_access $SQL:INT64\n") | |
1237 | _T("<END>"))); | |
f4d8fe18 | 1238 | break; |
1239 | } | |
1240 | ||
1241 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='322' WHERE var_name='SchemaVersion'"))); | |
1242 | return TRUE; | |
1243 | } | |
1244 | ||
1245 | /** | |
d4ce93a2 VK |
1246 | * Upgrade from V320 to V321 |
1247 | */ | |
1248 | static BOOL H_UpgradeFromV320(int currVersion, int newVersion) | |
1249 | { | |
1250 | static TCHAR batch[] = | |
1251 | _T("ALTER TABLE object_tools ADD command_short_name varchar(31)\n") | |
1252 | _T("UPDATE object_tools SET command_short_name='Shutdown' WHERE tool_id=1\n") | |
1253 | _T("UPDATE object_tools SET command_short_name='Restart' WHERE tool_id=2\n") | |
1254 | _T("UPDATE object_tools SET command_short_name='Wakeup' WHERE tool_id=3\n") | |
1255 | _T("<END>"); | |
1256 | CHK_EXEC(SQLBatch(batch)); | |
1257 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='321' WHERE var_name='SchemaVersion'"))); | |
1258 | return TRUE; | |
1259 | } | |
1260 | ||
ac14e3e6 | 1261 | /** |
d4ce93a2 | 1262 | * Upgrade from V319 to V320 |
d9177dd1 | 1263 | */ |
1264 | static BOOL H_UpgradeFromV319(int currVersion, int newVersion) | |
1265 | { | |
6c352bb5 | 1266 | CHK_EXEC(CreateConfigParam(_T("LdapConnectionString"), _T("ldap://localhost:389"), 1, 0)); |
d9177dd1 | 1267 | CHK_EXEC(CreateConfigParam(_T("LdapSyncUser"), _T(""), 1, 0)); |
1268 | CHK_EXEC(CreateConfigParam(_T("LdapSyncUserPassword"), _T(""), 1, 0)); | |
1269 | CHK_EXEC(CreateConfigParam(_T("LdapSearchBase"), _T(""), 1, 0)); | |
1270 | CHK_EXEC(CreateConfigParam(_T("LdapSearchFilter"), _T(""), 1, 0)); | |
1271 | CHK_EXEC(CreateConfigParam(_T("LdapUserDeleteAction"), _T("1"), 1, 0)); | |
f70a8b3c | 1272 | CHK_EXEC(CreateConfigParam(_T("LdapMappingName"), _T(""), 1, 0)); |
d9177dd1 | 1273 | CHK_EXEC(CreateConfigParam(_T("LdapMappingFullName"), _T("displayName"), 1, 0)); |
2575f149 | 1274 | CHK_EXEC(CreateConfigParam(_T("LdapMappingDescription"), _T(""), 1, 0)); |
d9177dd1 | 1275 | CHK_EXEC(CreateConfigParam(_T("LdapGroupClass"), _T(""), 1, 0)); |
1276 | CHK_EXEC(CreateConfigParam(_T("LdapUserClass"), _T(""), 1, 0)); | |
1277 | CHK_EXEC(CreateConfigParam(_T("LdapSyncInterval"), _T("0"), 1, 0)); | |
1278 | ||
1279 | static TCHAR batch[] = | |
1280 | _T("ALTER TABLE users ADD ldap_dn $SQL:TEXT\n") | |
1281 | _T("ALTER TABLE user_groups ADD ldap_dn $SQL:TEXT\n") | |
1282 | _T("<END>"); | |
1283 | CHK_EXEC(SQLBatch(batch)); | |
1284 | ||
1285 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='320' WHERE var_name='SchemaVersion'"))); | |
1286 | return TRUE; | |
1287 | } | |
d4ce93a2 | 1288 | |
d9177dd1 | 1289 | /* |
ac14e3e6 VK |
1290 | * Upgrade from V318 to V319 |
1291 | */ | |
1292 | static BOOL H_UpgradeFromV318(int currVersion, int newVersion) | |
1293 | { | |
1294 | static TCHAR batch[] = | |
1295 | _T("ALTER TABLE object_tools ADD icon $SQL:TEXT\n") | |
1296 | _T("ALTER TABLE object_tools ADD command_name varchar(255)\n") | |
1297 | _T("UPDATE object_tools SET flags=74,command_name='Shutdown system',icon='89504e470d0a1a0a0000000d49484452000000100000001008060000001ff3ff610000000473424954080808087c086488000002bf49444154388d95933f689c7518c73fbf3f7779efaede995c137369d54123ba4843070b1204c10ed24db182939b90c1c1e2eee05871e8d0d2b98a8ba0c52ee2d0cb622acd99222dd1084d9a18cd3597f7bd6bdebbdffbfbe7701d82e8e0071ebec303dfe7e1e1fb883fea7542aba54c080dac153c261ed1a30540b51a8f359bd9c9e565afedd4943ab6b4f4d56873f38d5014ff6af04f95950aaad5fa7e7d7dfdbcee1d1c3cd95d59395b5a5c7c82ffc1fd4ee7acc9f349fd683090b1db15499ae2013b3f8f1c0e296f6f539c380140796707333747a856296d6ca081d1e1a138cc73a95d8cc28f468834459f3ecd7367cee0b38ccd7bf7787e711180dfaf5ee599850544a3c1760898d5556c51e06314d2c5288be150186b995d58404bc9eef5ebb87e86140229257690b17be33b4a4a3173ea14236b71d60a17a3901684b59652b34952ab31dcda6470f76794c9b0b6c0160665320eefae317ab04552ad529e9ec6c78003292dc861bf2f4408e369fb7b948a8cb2cd7085c115868998936887eb75514a617a3db66eb68505211d30f86b97dde536420844a341b17e8bf8db0a21ed12d23ddcda0ff46f7e4dac24482939b8b386b3060f4207206a457afb16be9f519f7f91f22baf52f9e91bfca7ef00829a4fb1af9fa3fed2cbf8419f6c75054a0a0fc800a025f151cafdcb17514af3ecc79f939fbf40d69c259d9ca1ffd687cc7d7411a5145b573e230e52d0120f68ffd8400ad8b97685c9934f31f9ee07b4de5e227ff37d8c311c4f12aad50afb5f5c62e7da65a400519204408f37108408de471e5cfa04fbe3b74c9d7b8ff2d32f1042805f7e25bdf1257fdeee103c8408528d53afa356c85a42b107d6812920bdd3c16f7448cae3d81a0b837cdc2b1c380f724203445d8ff161767cb66df1afe5380a0d3d05ca8d0f148110c02bb035b013109b1a17747b06baa20d3c84897dc93420feeb0b8f22203603dd19307f037f0665861328b32e0000000049454e44ae426082' WHERE tool_id=1\n") | |
1298 | _T("UPDATE object_tools SET flags=74,command_name='Restart system',icon='89504e470d0a1a0a0000000d49484452000000100000001008060000001ff3ff610000000473424954080808087c0864880000029849444154388d85934d8b1c5514869f73eeadaaae6ea77bda388999882241fc5c0e09ae4484c4857b4177fa0b5474256edcfa075cbacbc23f6074a12332a0a2200a2189e8c468a23d93e99e9eaeaaae7beb1e1733f9902c7ce06c0ebc2f2fe7f0ca5fe311fdd71e77d93332922e08b749dcc5fe3bc9f72d5d1fcf861f7dd6f9f295353778ebdd0b71ff977374ad60f7888e1003bbb3379ceb930f4e7fbe7be5a7573da7f65697db17cf2ff2e757fe6e06a00e1141040aab59ebb5dc47076efbdb739cacc63edc9aabee4f64796248efb10dbcf738e750556268e97eff14b937ce6d1607126e55eae33c4956d5f4f72f21ae40d6cfe0bc4755c9f39cd4ccc0d27d7a695ae23c896fe7a645d5482c26340f0d19e639beb9811463c85788610a29c1d11d4284cc416a82848589861a49754bab390fac3f4ba69174f963ba7040d745249f4136033f63efd859769f78933a792c244265ea436d9a9a99e86895bc28b0e90fc03632bd88e463acb787580696f3e0fa299ade09e275a5feed2b09b5898f4ba35bdc40bb6b0034f5357cda4277bec354400d0b0d5d75406a5e42caa751d90596c425e22d00aa48771933a3c99e6230a8d1b241dcd1eb03a4a2c4563600f07615bc622da80510149aefa1b982ef3dc24d7d071b7afc71f0c781d58c83d107e48347d1f62a1a7f44f4d0c0130c4c4196d89fefa1273f215f7d9d4b379fa4dfdf22cb32bc7f99b5f533c45893edbc4fe75a8c0116c05b008b408434fd9a327f031b7d08c73670ee2c65595296259afe20fbe76de2fc9ba39e1cd6c6a7e4b0ae87d5200a4cbea4acce3318bd8865cfe1a283dd9fe9a65f901615a982d400c96360be9eda4ebbfdf0a6ec752f741ac11f1a89db02d9ba5bc8d483ae877587e2f0abdfac2b26b209488fa218b07627d7ff636dc524d52cff0513e53f37235ac3190000000049454e44ae426082' WHERE tool_id=2\n") | |
1299 | _T("UPDATE object_tools SET flags=64,command_name='Wakeup node using Wake-On-LAN',icon='89504e470d0a1a0a0000000d49484452000000100000001008060000001ff3ff610000000473424954080808087c086488000000097048597300000dd700000dd70142289b780000001974455874536f667477617265007777772e696e6b73636170652e6f72679bee3c1a0000023649444154388d8d924f48545114c67ff7bd37ff7cf9071bc70a4d47271ca15c848d448185b40a89204890362d8568eb2270d7a2762d5cb7711504d1ae10c195218895a488528e4e06a653d338de7bdfbcf75ac84ce38c901f9ccdb9e7fbce39f77c627ce6872df6dd71f01f781e1d9c00866003215efaf99de7d6763afb1078721262053a800908ed5a5aa9b1e3bb0802a600c0717d3cdf3fae6cccd24a25abb302a80b990c265a009859d941299763249296d6b2a6732468d25a1f24156f00e0cbd62e9b5a71a0dd9a490cad14a570b4266c780cf546797cab1b1317139747435ddcec69266c78385a53c9b1b45265b548d022d51563f45a9c778b69ce35850058de928c0cb4933fd04c7ffece812e9639e5158480865098ebc9181fbfeef07a6e9dc68805c0af8243f45480ab174e33bb9426e7484a9b942710020c3b40e24c236f3facb1bd9b634d3a00d8e100ab992cb7af7421bc225aa9b280a195a414524972054d5f679488e5a394442949d8f4b8d4d14caea09115f55a490cad155a2b9452ecfdcef37e619ddef6287706ba89c76ce2319be1fe4e926d51663e6d90cdeda3d42147ebaa4fcc161da6a61739df52cfe88d8b0ca712f8be871d0e31bb94666a7a916c2e8feb7aff3cd33ef2f4c8612dd3a0a5d1a6bfa78d544f1bbeef33bf9a617e65939fb902c50a328068bd3bb10c1c71a3210401cb24143cbc82d2459c62ad8980154b2b3909bca87e91c09fea642d26ad67f7fb32afe6bebd5958dd1c2c48ddf45f8a10d87591bdcb89b3b3f7063a337f01f30f1c1c580292640000000049454e44ae426082' WHERE tool_id=3\n") | |
1300 | _T("<END>"); | |
1301 | CHK_EXEC(SQLBatch(batch)); | |
1302 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='319' WHERE var_name='SchemaVersion'"))); | |
1303 | return TRUE; | |
1304 | } | |
1305 | ||
56d5289b VK |
1306 | /** |
1307 | * Upgrade from V317 to V318 | |
1308 | */ | |
1309 | static BOOL H_UpgradeFromV317(int currVersion, int newVersion) | |
1310 | { | |
1311 | CHK_EXEC(CreateEventTemplate(EVENT_AP_DOWN, _T("SYS_AP_DOWN"), SEVERITY_CRITICAL, EF_LOG, | |
1312 | _T("Access point %2 changed state to DOWN"), | |
1313 | _T("Generated when access point state changes to DOWN.\r\n") | |
1314 | _T("Parameters:\r\n") | |
1315 | _T(" 1) Access point object ID\r\n") | |
1316 | _T(" 2) Access point name\r\n") | |
1317 | _T(" 3) Access point MAC address\r\n") | |
1318 | _T(" 4) Access point IP address\r\n") | |
1319 | _T(" 5) Access point vendor name\r\n") | |
1320 | _T(" 6) Access point model\r\n") | |
1321 | _T(" 7) Access point serial number"))); | |
1322 | ||
1323 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='318' WHERE var_name='SchemaVersion'"))); | |
1324 | return TRUE; | |
1325 | } | |
1326 | ||
8deadd79 VK |
1327 | /** |
1328 | * Upgrade from V316 to V317 | |
1329 | */ | |
1330 | static BOOL H_UpgradeFromV316(int currVersion, int newVersion) | |
1331 | { | |
1332 | CHK_EXEC(CreateConfigParam(_T("MinViewRefreshInterval"), _T("1000"), 1, 0)); | |
1333 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='317' WHERE var_name='SchemaVersion'"))); | |
1334 | return TRUE; | |
1335 | } | |
1336 | ||
23ed00c4 VK |
1337 | /** |
1338 | * Upgrade from V315 to V316 | |
1339 | */ | |
1340 | static BOOL H_UpgradeFromV315(int currVersion, int newVersion) | |
1341 | { | |
1342 | static TCHAR batch[] = | |
1343 | _T("ALTER TABLE access_points ADD ap_state integer\n") | |
1344 | _T("UPDATE access_points SET ap_state=0\n") | |
1345 | _T("<END>"); | |
1346 | CHK_EXEC(SQLBatch(batch)); | |
1347 | ||
1348 | CHK_EXEC(CreateEventTemplate(EVENT_AP_ADOPTED, _T("SYS_AP_ADOPTED"), SEVERITY_NORMAL, EF_LOG, | |
1349 | _T("Access point %2 changed state to ADOPTED"), | |
1350 | _T("Generated when access point state changes to ADOPTED.\r\n") | |
1351 | _T("Parameters:\r\n") | |
1352 | _T(" 1) Access point object ID\r\n") | |
1353 | _T(" 2) Access point name\r\n") | |
1354 | _T(" 3) Access point MAC address\r\n") | |
1355 | _T(" 4) Access point IP address\r\n") | |
1356 | _T(" 5) Access point vendor name\r\n") | |
1357 | _T(" 6) Access point model\r\n") | |
1358 | _T(" 7) Access point serial number"))); | |
1359 | ||
1360 | CHK_EXEC(CreateEventTemplate(EVENT_AP_UNADOPTED, _T("SYS_AP_UNADOPTED"), SEVERITY_MAJOR, EF_LOG, | |
1361 | _T("Access point %2 changed state to UNADOPTED"), | |
1362 | _T("Generated when access point state changes to UNADOPTED.\r\n") | |
1363 | _T("Parameters:\r\n") | |
1364 | _T(" 1) Access point object ID\r\n") | |
1365 | _T(" 2) Access point name\r\n") | |
1366 | _T(" 3) Access point MAC address\r\n") | |
1367 | _T(" 4) Access point IP address\r\n") | |
1368 | _T(" 5) Access point vendor name\r\n") | |
1369 | _T(" 6) Access point model\r\n") | |
1370 | _T(" 7) Access point serial number"))); | |
1371 | ||
1372 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='316' WHERE var_name='SchemaVersion'"))); | |
1373 | return TRUE; | |
1374 | } | |
1375 | ||
b2042b58 VK |
1376 | /** |
1377 | * Upgrade from V314 to V315 | |
1378 | */ | |
1379 | static BOOL H_UpgradeFromV314(int currVersion, int newVersion) | |
1380 | { | |
1381 | static TCHAR batch[] = | |
1382 | _T("ALTER TABLE thresholds ADD match_count integer\n") | |
1383 | _T("UPDATE thresholds SET match_count=0 WHERE current_state=0\n") | |
1384 | _T("UPDATE thresholds SET match_count=1 WHERE current_state<>0\n") | |
1385 | _T("<END>"); | |
1386 | CHK_EXEC(SQLBatch(batch)); | |
1387 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='315' WHERE var_name='SchemaVersion'"))); | |
1388 | return TRUE; | |
1389 | } | |
1390 | ||
2d7ee2e0 | 1391 | /** |
1392 | * Upgrade from V313 to V314 | |
1393 | */ | |
1394 | static BOOL H_UpgradeFromV313(int currVersion, int newVersion) | |
1395 | { | |
b2042b58 | 1396 | // Replace double backslash with single backslash in all "file download" (code 7) object tools |
2d7ee2e0 | 1397 | DB_RESULT hResult = SQLSelect(_T("SELECT tool_id, tool_data FROM object_tools WHERE tool_type=7")); |
1398 | if (hResult != NULL) | |
1399 | { | |
1400 | int count = DBGetNumRows(hResult); | |
1401 | for(int i = 0; i < count; i++) | |
1402 | { | |
1403 | TCHAR* toolData = DBGetField(hResult, i, 1, NULL, 0); | |
1404 | TranslateStr(toolData, _T("\\\\"), _T("\\")); | |
1405 | ||
1406 | DB_STATEMENT statment = DBPrepare(g_hCoreDB, _T("UPDATE object_tools SET tool_data=? WHERE tool_id=?")); | |
1407 | if (statment == NULL) | |
1408 | return FALSE; | |
1409 | DBBind(statment, 1, DB_SQLTYPE_TEXT, toolData, DB_BIND_DYNAMIC); | |
1410 | DBBind(statment, 2, DB_SQLTYPE_INTEGER, DBGetFieldULong(hResult, i, 0)); | |
1411 | if(!DBExecute(statment)) | |
1412 | return FALSE; | |
1413 | DBFreeStatement(statment); | |
1414 | } | |
1415 | DBFreeResult(hResult); | |
1416 | } | |
1417 | ||
1418 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='314' WHERE var_name='SchemaVersion'"))); | |
1419 | return TRUE; | |
1420 | } | |
1421 | ||
1422 | /** | |
1423 | * Upgrade from V312 to V313 | |
1424 | */ | |
1425 | static BOOL H_UpgradeFromV312(int currVersion, int newVersion) | |
1426 | { | |
4dfa78b6 VK |
1427 | CHK_EXEC(SetColumnNullable(_T("object_tools"), _T("tool_name"))); |
1428 | CHK_EXEC(SetColumnNullable(_T("object_tools"), _T("tool_data"))); | |
1429 | CHK_EXEC(SetColumnNullable(_T("object_tools"), _T("description"))); | |
1430 | CHK_EXEC(SetColumnNullable(_T("object_tools"), _T("confirmation_text"))); | |
1431 | CHK_EXEC(SetColumnNullable(_T("object_tools"), _T("matching_oid"))); | |
1432 | CHK_EXEC(SetColumnNullable(_T("object_tools_table_columns"), _T("col_name"))); | |
2d7ee2e0 | 1433 | CHK_EXEC(ConvertStrings(_T("object_tools"), _T("tool_id"), _T("tool_name"))); |
1434 | CHK_EXEC(ConvertStrings(_T("object_tools"), _T("tool_id"), _T("tool_data"))); | |
1435 | CHK_EXEC(ConvertStrings(_T("object_tools"), _T("tool_id"), _T("description"))); | |
1436 | CHK_EXEC(ConvertStrings(_T("object_tools"), _T("tool_id"), _T("confirmation_text"))); | |
1437 | CHK_EXEC(ConvertStrings(_T("object_tools"), _T("tool_id"), _T("matching_oid"))); | |
1438 | CHK_EXEC(ConvertStrings(_T("object_tools_table_columns"), _T("tool_id"), _T("col_number"), _T("col_name"), false)); | |
1439 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='313' WHERE var_name='SchemaVersion'"))); | |
1440 | return TRUE; | |
1441 | } | |
1442 | ||
6498e05a VK |
1443 | /** |
1444 | * Upgrade from V311 to V312 | |
1445 | */ | |
1446 | static BOOL H_UpgradeFromV311(int currVersion, int newVersion) | |
1447 | { | |
1448 | CHK_EXEC(CreateConfigParam(_T("EnableReportingServer"), _T("0"), 1, 1)); | |
1449 | CHK_EXEC(CreateConfigParam(_T("ReportingServerHostname"), _T("localhost"), 1, 1)); | |
1450 | CHK_EXEC(CreateConfigParam(_T("ReportingServerPort"), _T("4710"), 1, 1)); | |
1451 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='312' WHERE var_name='SchemaVersion'"))); | |
1452 | return TRUE; | |
1453 | } | |
1454 | ||
9262b092 VK |
1455 | /** |
1456 | * Upgrade from V310 to V311 | |
1457 | */ | |
1458 | static BOOL H_UpgradeFromV310(int currVersion, int newVersion) | |
1459 | { | |
1460 | IntegerArray<UINT32> deleteList; | |
1461 | ||
1462 | // reports | |
1463 | DB_RESULT hResult = SQLSelect(_T("SELECT id FROM reports")); | |
1464 | if (hResult != NULL) | |
1465 | { | |
1466 | int count = DBGetNumRows(hResult); | |
1467 | for(int i = 0; i < count; i++) | |
1468 | deleteList.add(DBGetFieldULong(hResult, i, 0)); | |
1469 | DBFreeResult(hResult); | |
1470 | } | |
1471 | ||
1472 | // report groups | |
1473 | hResult = SQLSelect(_T("SELECT id FROM containers WHERE object_class=25")); | |
1474 | if (hResult != NULL) | |
1475 | { | |
1476 | int count = DBGetNumRows(hResult); | |
1477 | for(int i = 0; i < count; i++) | |
1478 | deleteList.add(DBGetFieldULong(hResult, i, 0)); | |
1479 | DBFreeResult(hResult); | |
1480 | } | |
1481 | ||
1482 | for(int i = 0; i < deleteList.size(); i++) | |
1483 | { | |
1484 | TCHAR query[256]; | |
1485 | ||
1486 | _sntprintf(query, 256, _T("DELETE FROM object_properties WHERE object_id=%d"), deleteList.get(i)); | |
1487 | CHK_EXEC(SQLQuery(query)); | |
1488 | ||
1489 | _sntprintf(query, 256, _T("DELETE FROM object_custom_attributes WHERE object_id=%d"), deleteList.get(i)); | |
1490 | CHK_EXEC(SQLQuery(query)); | |
1491 | ||
1492 | _sntprintf(query, 256, _T("DELETE FROM acl WHERE object_id=%d"), deleteList.get(i)); | |
1493 | CHK_EXEC(SQLQuery(query)); | |
1494 | ||
1495 | _sntprintf(query, 256, _T("DELETE FROM container_members WHERE object_id=%d OR container_id=%d"), deleteList.get(i), deleteList.get(i)); | |
1496 | CHK_EXEC(SQLQuery(query)); | |
1497 | } | |
1498 | ||
1499 | static TCHAR batch[] = | |
1500 | _T("DROP TABLE reports\n") | |
1501 | _T("DROP TABLE report_results\n") | |
1502 | _T("DELETE FROM containers WHERE object_class=25\n") | |
1503 | _T("DELETE FROM object_properties WHERE object_id=8\n") | |
1504 | _T("<END>"); | |
1505 | CHK_EXEC(SQLBatch(batch)); | |
1506 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='311' WHERE var_name='SchemaVersion'"))); | |
1507 | return TRUE; | |
1508 | } | |
1509 | ||
32745683 VK |
1510 | /** |
1511 | * Upgrade from V309 to V310 | |
1512 | */ | |
1513 | static BOOL H_UpgradeFromV309(int currVersion, int newVersion) | |
1514 | { | |
1515 | static TCHAR batch[] = | |
1516 | _T("ALTER TABLE interfaces ADD peer_proto integer\n") | |
1517 | _T("UPDATE interfaces SET peer_proto=0\n") | |
1518 | _T("<END>"); | |
1519 | CHK_EXEC(SQLBatch(batch)); | |
1520 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='310' WHERE var_name='SchemaVersion'"))); | |
1521 | return TRUE; | |
1522 | } | |
1523 | ||
34a320ad VK |
1524 | /** |
1525 | * Upgrade from V308 to V309 | |
1526 | */ | |
1527 | static BOOL H_UpgradeFromV308(int currVersion, int newVersion) | |
1528 | { | |
1529 | CHK_EXEC(CreateConfigParam(_T("HelpDeskLink"), _T("none"), 1, 1)); | |
1530 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='309' WHERE var_name='SchemaVersion'"))); | |
1531 | return TRUE; | |
1532 | } | |
1533 | ||
2ab9314f | 1534 | /** |
1535 | * Upgrade from V307 to V308 | |
1536 | */ | |
1537 | static BOOL H_UpgradeFromV307(int currVersion, int newVersion) | |
1538 | { | |
1539 | static TCHAR batch[] = | |
32745683 VK |
1540 | _T("ALTER TABLE network_map_elements ADD flags integer\n") |
1541 | _T("UPDATE network_map_elements SET flags=0\n") //set all elements like manually generated | |
1542 | _T("ALTER TABLE network_map_links ADD element_data $SQL:TEXT\n") | |
1543 | _T("ALTER TABLE network_map_links ADD flags integer\n") | |
1544 | _T("UPDATE network_map_links SET flags=0\n") //set all elements like manually generated | |
1545 | _T("<END>"); | |
2ab9314f | 1546 | CHK_EXEC(SQLBatch(batch)); |
1547 | ||
32745683 VK |
1548 | // it is assumed that now all autogenerated maps contain only autogenerated objects and links |
1549 | // get elements from autogenerated maps and set their flags to AUTO_GENERATED for map elements and map links | |
2ab9314f | 1550 | TCHAR query[256]; |
1551 | _sntprintf(query, 256, _T("SELECT id FROM network_maps WHERE map_type=%d OR map_type=%d"), | |
1552 | MAP_TYPE_LAYER2_TOPOLOGY, MAP_TYPE_IP_TOPOLOGY); | |
1553 | DB_RESULT hResult = SQLSelect(query); | |
1554 | if (hResult != NULL) | |
1555 | { | |
1556 | int count = DBGetNumRows(hResult); | |
1557 | for(int i = 0; i < count; i++) | |
1558 | { | |
1559 | _sntprintf(query, 256, _T("UPDATE network_map_elements SET flags='1' WHERE map_id=%d"), | |
1560 | DBGetFieldULong(hResult, i, 0)); | |
1561 | CHK_EXEC(SQLQuery(query)); | |
1562 | _sntprintf(query, 256, _T("UPDATE network_map_links SET flags='1' WHERE map_id=%d"), | |
1563 | DBGetFieldULong(hResult, i, 0)); | |
1564 | CHK_EXEC(SQLQuery(query)); | |
1565 | } | |
1566 | DBFreeResult(hResult); | |
1567 | } | |
1568 | ||
1569 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='308' WHERE var_name='SchemaVersion'"))); | |
1570 | return TRUE; | |
1571 | } | |
1572 | ||
b3eb058b VK |
1573 | /** |
1574 | * Upgrade from V306 to V307 | |
1575 | */ | |
1576 | static BOOL H_UpgradeFromV306(int currVersion, int newVersion) | |
1577 | { | |
1578 | CHK_EXEC(SetColumnNullable(_T("config_clob"), _T("var_value"))); | |
1579 | CHK_EXEC(ConvertStrings(_T("config_clob"), _T("var_name"), NULL, _T("var_value"), true)); | |
1580 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='307' WHERE var_name='SchemaVersion'"))); | |
1581 | return TRUE; | |
1582 | } | |
1583 | ||
d1730ccf VK |
1584 | /** |
1585 | * Upgrade from V305 to V306 | |
1586 | */ | |
1587 | static BOOL H_UpgradeFromV305(int currVersion, int newVersion) | |
1588 | { | |
1589 | CHK_EXEC(CreateConfigParam(_T("ExtendedLogQueryAccessControl"), _T("0"), 1, 0)); | |
1590 | CHK_EXEC(CreateConfigParam(_T("EnableTimedAlarmAck"), _T("1"), 1, 1)); | |
9a1f7c45 | 1591 | CHK_EXEC(CreateConfigParam(_T("EnableCheckPointSNMP"), _T("0"), 1, 0)); |
d1730ccf VK |
1592 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='306' WHERE var_name='SchemaVersion'"))); |
1593 | return TRUE; | |
1594 | } | |
1595 | ||
035745fc VK |
1596 | /** |
1597 | * Upgrade from V304 to V305 | |
1598 | */ | |
1599 | static BOOL H_UpgradeFromV304(int currVersion, int newVersion) | |
1600 | { | |
2ab9314f | 1601 | CHK_EXEC(CreateEventTemplate(EVENT_IF_PEER_CHANGED, _T("SYS_IF_PEER_CHANGED"), SEVERITY_NORMAL, EF_LOG, |
035745fc VK |
1602 | _T("New peer for interface %3 is %7 interface %10 (%12)"), |
1603 | _T("Generated when peer information for interface changes.\r\n") | |
1604 | _T("Parameters:\r\n") | |
1605 | _T(" 1) Local interface object ID\r\n") | |
1606 | _T(" 2) Local interface index\r\n") | |
1607 | _T(" 3) Local interface name\r\n") | |
1608 | _T(" 4) Local interface IP address\r\n") | |
1609 | _T(" 5) Local interface MAC address\r\n") | |
1610 | _T(" 6) Peer node object ID\r\n") | |
1611 | _T(" 7) Peer node name\r\n") | |
1612 | _T(" 8) Peer interface object ID\r\n") | |
1613 | _T(" 9) Peer interface index\r\n") | |
1614 | _T(" 10) Peer interface name\r\n") | |
1615 | _T(" 11) Peer interface IP address\r\n") | |
1616 | _T(" 12) Peer interface MAC address"))); | |
1617 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='305' WHERE var_name='SchemaVersion'"))); | |
1618 | return TRUE; | |
1619 | } | |
1620 | ||
fce4295c | 1621 | /** |
1622 | * Upgrade from V303 to V304 | |
1623 | */ | |
1624 | static BOOL H_UpgradeFromV303(int currVersion, int newVersion) | |
1625 | { | |
d184506f | 1626 | CHK_EXEC(CreateConfigParam(_T("StrictAlarmStatusFlow"), _T("0"), 1, 0)); |
fce4295c | 1627 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='304' WHERE var_name='SchemaVersion'"))); |
1628 | return TRUE; | |
1629 | } | |
1630 | ||
6f33021d | 1631 | /** |
1632 | * Upgrade from V302 to V303 | |
1633 | */ | |
1634 | static BOOL H_UpgradeFromV302(int currVersion, int newVersion) | |
1635 | { | |
1636 | static TCHAR batch[] = | |
1637 | _T("ALTER TABLE alarms ADD ack_timeout integer\n") | |
1638 | _T("UPDATE alarms SET ack_timeout='0'\n") | |
1639 | _T("<END>"); | |
1640 | CHK_EXEC(SQLBatch(batch)); | |
1641 | ||
1642 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='303' WHERE var_name='SchemaVersion'"))); | |
1643 | return TRUE; | |
1644 | } | |
1645 | ||
27088c41 AK |
1646 | /** |
1647 | * Upgrade from V301 to V302 | |
1648 | */ | |
1649 | static BOOL H_UpgradeFromV301(int currVersion, int newVersion) | |
1650 | { | |
1651 | static TCHAR batch[] = | |
1652 | _T("DELETE FROM config WHERE var_name='DisableVacuum'\n") | |
1653 | _T("<END>"); | |
1654 | CHK_EXEC(SQLBatch(batch)); | |
1655 | ||
1656 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='302' WHERE var_name='SchemaVersion'"))); | |
1657 | return TRUE; | |
1658 | } | |
1659 | ||
1d34c533 VK |
1660 | /** |
1661 | * Upgrade from V300 to V301 | |
1662 | */ | |
1663 | static BOOL H_UpgradeFromV300(int currVersion, int newVersion) | |
1664 | { | |
1665 | static TCHAR batch[] = | |
1666 | _T("ALTER TABLE thresholds ADD script $SQL:TEXT\n") | |
1667 | _T("ALTER TABLE thresholds ADD sample_count integer\n") | |
1668 | _T("UPDATE thresholds SET sample_count=parameter_1\n") | |
1669 | _T("ALTER TABLE thresholds DROP COLUMN parameter_1\n") | |
1670 | _T("ALTER TABLE thresholds DROP COLUMN parameter_2\n") | |
1671 | _T("<END>"); | |
1672 | CHK_EXEC(SQLBatch(batch)); | |
1673 | ||
1674 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='301' WHERE var_name='SchemaVersion'"))); | |
1675 | return TRUE; | |
1676 | } | |
1677 | ||
244c65ef VK |
1678 | /** |
1679 | * Upgrade from V299 to V300 | |
1680 | */ | |
1681 | static BOOL H_UpgradeFromV299(int currVersion, int newVersion) | |
1682 | { | |
1683 | CHK_EXEC(CreateConfigParam(_T("EnableXMPPConnector"), _T("0"), 1, 1)); | |
1684 | CHK_EXEC(CreateConfigParam(_T("XMPPLogin"), _T("netxms@localhost"), 1, 1)); | |
1685 | CHK_EXEC(CreateConfigParam(_T("XMPPPassword"), _T("netxms"), 1, 1)); | |
1686 | CHK_EXEC(CreateConfigParam(_T("XMPPServer"), _T("localhost"), 1, 1)); | |
1687 | CHK_EXEC(CreateConfigParam(_T("XMPPPort"), _T("5222"), 1, 1)); | |
1688 | ||
1689 | SetColumnNullable(_T("users"), _T("full_name")); | |
1690 | SetColumnNullable(_T("users"), _T("description")); | |
1691 | SetColumnNullable(_T("users"), _T("cert_mapping_data")); | |
1692 | SetColumnNullable(_T("user_groups"), _T("description")); | |
1693 | SetColumnNullable(_T("userdb_custom_attributes"), _T("attr_value")); | |
1694 | ||
1695 | ConvertStrings(_T("users"), _T("id"), _T("full_name")); | |
1696 | ConvertStrings(_T("users"), _T("id"), _T("description")); | |
1697 | ConvertStrings(_T("users"), _T("id"), _T("cert_mapping_data")); | |
1698 | ConvertStrings(_T("user_groups"), _T("id"), _T("description")); | |
1699 | ConvertStrings(_T("userdb_custom_attributes"), _T("object_id"), _T("attr_name"), _T("attr_name"), true); | |
1700 | ConvertStrings(_T("userdb_custom_attributes"), _T("object_id"), _T("attr_name"), _T("attr_value"), true); | |
1701 | ||
1702 | CHK_EXEC(SQLQuery(_T("ALTER TABLE users ADD xmpp_id varchar(127)"))); | |
1703 | ||
1704 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='300' WHERE var_name='SchemaVersion'"))); | |
1705 | return TRUE; | |
1706 | } | |
1707 | ||
ce47611c VK |
1708 | /** |
1709 | * Upgrade from V298 to V299 | |
1710 | */ | |
1711 | static BOOL H_UpgradeFromV298(int currVersion, int newVersion) | |
1712 | { | |
1713 | CHK_EXEC(SQLQuery(_T("UPDATE event_cfg SET message='Subnet %2 added',description='") | |
1714 | _T("Generated when subnet object added to the database.\r\n") | |
1715 | _T("Parameters:\r\n") | |
1716 | _T(" 1) Subnet object ID\r\n") | |
1717 | _T(" 2) Subnet name\r\n") | |
1718 | _T(" 3) IP address\r\n") | |
1719 | _T(" 4) Network mask") | |
1720 | _T("' WHERE event_code=2"))); | |
1721 | CHK_EXEC(SQLQuery(_T("UPDATE event_cfg SET message='Subnet %2 deleted',description='") | |
1722 | _T("Generated when subnet object deleted from the database.\r\n") | |
1723 | _T("Parameters:\r\n") | |
1724 | _T(" 1) Subnet object ID\r\n") | |
1725 | _T(" 2) Subnet name\r\n") | |
1726 | _T(" 3) IP address\r\n") | |
1727 | _T(" 4) Network mask") | |
1728 | _T("' WHERE event_code=19"))); | |
1729 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='299' WHERE var_name='SchemaVersion'"))); | |
1730 | return TRUE; | |
1731 | } | |
1732 | ||
af21affe VK |
1733 | /** |
1734 | * Upgrade from V297 to V298 | |
1735 | */ | |
1736 | static BOOL H_UpgradeFromV297(int currVersion, int newVersion) | |
1737 | { | |
1738 | CHK_EXEC(CreateConfigParam(_T("AgentDefaultSharedSecret"), _T("netxms"), 1, 0)); | |
1739 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='298' WHERE var_name='SchemaVersion'"))); | |
1740 | return TRUE; | |
1741 | } | |
1742 | ||
e02953a4 VK |
1743 | /** |
1744 | * Upgrade from V296 to V297 | |
1745 | */ | |
1746 | static BOOL H_UpgradeFromV296(int currVersion, int newVersion) | |
1747 | { | |
1748 | CHK_EXEC(CreateConfigParam(_T("UseSNMPTrapsForDiscovery"), _T("0"), 1, 1)); | |
1749 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='297' WHERE var_name='SchemaVersion'"))); | |
1750 | return TRUE; | |
1751 | } | |
1752 | ||
71e4ed3a VK |
1753 | /** |
1754 | * Upgrade from V295 to V296 | |
1755 | */ | |
1756 | static BOOL H_UpgradeFromV295(int currVersion, int newVersion) | |
1757 | { | |
1758 | static TCHAR batch[] = | |
1759 | _T("ALTER TABLE nodes ADD boot_time integer\n") | |
1760 | _T("UPDATE nodes SET boot_time=0\n") | |
1761 | _T("<END>"); | |
1762 | CHK_EXEC(SQLBatch(batch)); | |
1763 | ||
1764 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='296' WHERE var_name='SchemaVersion'"))); | |
1765 | return TRUE; | |
1766 | } | |
1767 | ||
c59466d2 VK |
1768 | /** |
1769 | * Upgrade from V294 to V295 | |
1770 | */ | |
1771 | static BOOL H_UpgradeFromV294(int currVersion, int newVersion) | |
1772 | { | |
1773 | CHK_EXEC(CreateConfigParam(_T("IcmpPingTimeout"), _T("1500"), 1, 1)); | |
1774 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='295' WHERE var_name='SchemaVersion'"))); | |
1775 | return TRUE; | |
1776 | } | |
1777 | ||
1d4f7890 VK |
1778 | /** |
1779 | * Upgrade from V293 to V294 | |
1780 | */ | |
1781 | static BOOL H_UpgradeFromV293(int currVersion, int newVersion) | |
1782 | { | |
1783 | static TCHAR batch[] = | |
1784 | _T("DELETE FROM metadata WHERE var_name LIKE 'TDataTableCreationCommand_%'\n") | |
1785 | _T("INSERT INTO metadata (var_name,var_value)") | |
1786 | _T(" VALUES ('TDataTableCreationCommand_0','CREATE TABLE tdata_%d (item_id integer not null,tdata_timestamp integer not null,record_id $SQL:INT64 not null,UNIQUE(record_id))')\n") | |
1787 | _T("INSERT INTO metadata (var_name,var_value)") | |
a9f5aa55 | 1788 | _T(" VALUES ('TDataTableCreationCommand_1','CREATE TABLE tdata_records_%d (record_id $SQL:INT64 not null,row_id $SQL:INT64 not null,instance varchar(255) null,PRIMARY KEY(row_id),FOREIGN KEY (record_id) REFERENCES tdata_%d(record_id) ON DELETE CASCADE)')\n") |
1d4f7890 VK |
1789 | _T("INSERT INTO metadata (var_name,var_value)") |
1790 | _T(" VALUES ('TDataTableCreationCommand_2','CREATE TABLE tdata_rows_%d (row_id $SQL:INT64 not null,column_id integer not null,value varchar(255) null,PRIMARY KEY(row_id,column_id),FOREIGN KEY (row_id) REFERENCES tdata_records_%d(row_id) ON DELETE CASCADE)')\n") | |
a9f5aa55 VK |
1791 | _T("INSERT INTO metadata (var_name,var_value)") |
1792 | _T(" VALUES ('TDataIndexCreationCommand_2','CREATE INDEX idx_tdata_rec_%d_id ON tdata_records_%d(record_id)')\n") | |
1d4f7890 VK |
1793 | _T("<END>"); |
1794 | CHK_EXEC(SQLBatch(batch)); | |
1795 | ||
2f1bc68b VK |
1796 | RecreateTData(_T("nodes"), true, false); |
1797 | RecreateTData(_T("clusters"), true, false); | |
1798 | RecreateTData(_T("mobile_devices"), true, false); | |
1d4f7890 | 1799 | |
a9f5aa55 | 1800 | CHK_EXEC(SQLQuery(_T("INSERT INTO metadata (var_name,var_value) VALUES ('ValidTDataIndex','1')"))); |
1d4f7890 VK |
1801 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='294' WHERE var_name='SchemaVersion'"))); |
1802 | return TRUE; | |
1803 | } | |
1804 | ||
bc969eaf VK |
1805 | /** |
1806 | * Upgrade from V292 to V293 | |
1807 | */ | |
1808 | static BOOL H_UpgradeFromV292(int currVersion, int newVersion) | |
1809 | { | |
1810 | CHK_EXEC(CreateConfigParam(_T("DefaultConsoleShortTimeFormat"), _T("HH:mm"), 1, 0)); | |
1811 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='293' WHERE var_name='SchemaVersion'"))); | |
1812 | return TRUE; | |
1813 | } | |
1814 | ||
badf9a95 VK |
1815 | /** |
1816 | * Upgrade from V291 to V292 | |
1817 | */ | |
1818 | static BOOL H_UpgradeFromV291(int currVersion, int newVersion) | |
1819 | { | |
1820 | CHK_EXEC(SQLQuery(_T("ALTER TABLE event_policy ADD rule_guid varchar(36)"))); | |
271e3971 | 1821 | CHK_EXEC(GenerateGUID(_T("event_policy"), _T("rule_id"), _T("rule_guid"))); |
badf9a95 VK |
1822 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='292' WHERE var_name='SchemaVersion'"))); |
1823 | return TRUE; | |
1824 | } | |
1825 | ||
48d50116 VK |
1826 | /** |
1827 | * Upgrade from V290 to V291 | |
1828 | */ | |
1829 | static BOOL H_UpgradeFromV290(int currVersion, int newVersion) | |
1830 | { | |
1831 | CHK_EXEC(SQLQuery(_T("UPDATE network_services SET service_type=7 WHERE service_type=6"))); | |
1832 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='291' WHERE var_name='SchemaVersion'"))); | |
1833 | return TRUE; | |
1834 | } | |
1835 | ||
701726bc VK |
1836 | /** |
1837 | * Upgrade from V289 to V290 | |
1838 | */ | |
1839 | static BOOL H_UpgradeFromV289(int currVersion, int newVersion) | |
1840 | { | |
1841 | CHK_EXEC(SQLQuery(_T("ALTER TABLE network_maps ADD filter $SQL:TEXT"))); | |
1842 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='290' WHERE var_name='SchemaVersion'"))); | |
1843 | return TRUE; | |
1844 | } | |
1845 | ||
90297892 VK |
1846 | /** |
1847 | * Upgrade from V288 to V289 | |
1848 | */ | |
1849 | static BOOL H_UpgradeFromV288(int currVersion, int newVersion) | |
1850 | { | |
d95c3dad A |
1851 | static TCHAR batch[] = |
1852 | _T("ALTER TABLE dct_thresholds DROP COLUMN current_state\n") | |
1853 | _T("<END>"); | |
1854 | CHK_EXEC(SQLBatch(batch)); | |
90297892 VK |
1855 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='289' WHERE var_name='SchemaVersion'"))); |
1856 | return TRUE; | |
1857 | } | |
1858 | ||
a0dc14f9 VK |
1859 | /** |
1860 | * Upgrade from V287 to V288 | |
1861 | */ | |
1862 | static BOOL H_UpgradeFromV287(int currVersion, int newVersion) | |
1863 | { | |
1864 | CHK_EXEC(CreateEventTemplate(EVENT_TABLE_THRESHOLD_ACTIVATED, _T("SYS_TABLE_THRESHOLD_ACTIVATED"), EVENT_SEVERITY_MINOR, EF_LOG, | |
1865 | _T("Threshold activated on table \"%2\" row %4 (%5)"), | |
1866 | _T("Generated when table threshold is activated.\r\n") | |
1867 | _T("Parameters:\r\n") | |
1868 | _T(" 1) Table DCI name\r\n") | |
1869 | _T(" 2) Table DCI description\r\n") | |
1870 | _T(" 3) Table DCI ID\r\n") | |
1871 | _T(" 4) Table row\r\n") | |
1872 | _T(" 5) Instance"))); | |
1873 | ||
1874 | CHK_EXEC(CreateEventTemplate(EVENT_TABLE_THRESHOLD_DEACTIVATED, _T("SYS_TABLE_THRESHOLD_DEACTIVATED"), EVENT_SEVERITY_NORMAL, EF_LOG, | |
1875 | _T("Threshold deactivated on table \"%2\" row %4 (%5)"), | |
1876 | _T("Generated when table threshold is deactivated.\r\n") | |
1877 | _T("Parameters:\r\n") | |
1878 | _T(" 1) Table DCI name\r\n") | |
1879 | _T(" 2) Table DCI description\r\n") | |
1880 | _T(" 3) Table DCI ID\r\n") | |
1881 | _T(" 4) Table row\r\n") | |
1882 | _T(" 5) Instance"))); | |
1883 | ||
1884 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='288' WHERE var_name='SchemaVersion'"))); | |
1885 | return TRUE; | |
1886 | } | |
1887 | ||
9387bc59 VK |
1888 | /** |
1889 | * Upgrade from V286 to V287 | |
1890 | */ | |
1891 | static BOOL H_UpgradeFromV286(int currVersion, int newVersion) | |
1892 | { | |
1893 | static TCHAR batch[] = | |
1894 | _T("ALTER TABLE dc_table_columns ADD sequence_number integer\n") | |
1895 | _T("UPDATE dc_table_columns SET sequence_number=0\n") | |
1896 | _T("<END>"); | |
1897 | CHK_EXEC(SQLBatch(batch)); | |
1898 | ||
1899 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='287' WHERE var_name='SchemaVersion'"))); | |
1900 | return TRUE; | |
1901 | } | |
1902 | ||
9098ad59 VK |
1903 | /** |
1904 | * Upgrade from V285 to V286 | |
1905 | */ | |
1906 | static BOOL H_UpgradeFromV285(int currVersion, int newVersion) | |
1907 | { | |
1908 | CHK_EXEC(CreateTable( | |
1909 | _T("CREATE TABLE dct_thresholds (") | |
1910 | _T("id integer not null,") | |
1911 | _T("table_id integer not null,") | |
1912 | _T("sequence_number integer not null,") | |
1913 | _T("current_state char(1) not null,") | |
1914 | _T("activation_event integer not null,") | |
1915 | _T("deactivation_event integer not null,") | |
1916 | _T("PRIMARY KEY(id))"))); | |
1917 | ||
1918 | CHK_EXEC(CreateTable( | |
1919 | _T("CREATE TABLE dct_threshold_conditions (") | |
1920 | _T("threshold_id integer not null,") | |
1921 | _T("group_id integer not null,") | |
1922 | _T("sequence_number integer not null,") | |
1923 | _T("column_name varchar(63) null,") | |
1924 | _T("check_operation integer not null,") | |
1925 | _T("check_value varchar(255) null,") | |
1926 | _T("PRIMARY KEY(threshold_id,group_id,sequence_number))"))); | |
1927 | ||
1928 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='286' WHERE var_name='SchemaVersion'"))); | |
1929 | return TRUE; | |
1930 | } | |
1931 | ||
17017844 VK |
1932 | /** |
1933 | * Upgrade from V284 to V285 | |
1934 | */ | |
1935 | static BOOL H_UpgradeFromV284(int currVersion, int newVersion) | |
1936 | { | |
1937 | CHK_EXEC(SQLQuery(_T("CREATE INDEX idx_items_node_id ON items(node_id)"))); | |
1938 | CHK_EXEC(SQLQuery(_T("CREATE INDEX idx_dc_tables_node_id ON dc_tables(node_id)"))); | |
1939 | ||
1940 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='285' WHERE var_name='SchemaVersion'"))); | |
1941 | return TRUE; | |
1942 | } | |
1943 | ||
eb4822b6 VK |
1944 | /** |
1945 | * Upgrade from V283 to V284 | |
1946 | */ | |
1947 | static BOOL H_UpgradeFromV283(int currVersion, int newVersion) | |
1948 | { | |
1949 | CHK_EXEC(CreateConfigParam(_T("SNMPTrapPort"), _T("162"), 1, 1)); | |
1950 | ||
1951 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='284' WHERE var_name='SchemaVersion'"))); | |
1952 | return TRUE; | |
1953 | } | |
1954 | ||
0b77b73e VK |
1955 | /** |
1956 | * Upgrade from V282 to V283 | |
1957 | */ | |
1958 | static BOOL H_UpgradeFromV282(int currVersion, int newVersion) | |
1959 | { | |
1960 | static TCHAR batch[] = | |
1961 | _T("ALTER TABLE dc_table_columns ADD display_name varchar(255)\n") | |
1962 | _T("UPDATE dc_table_columns SET display_name=column_name\n") | |
1963 | _T("<END>"); | |
1964 | CHK_EXEC(SQLBatch(batch)); | |
1965 | ||
1966 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='283' WHERE var_name='SchemaVersion'"))); | |
1967 | return TRUE; | |
1968 | } | |
1969 | ||
549f48b3 VK |
1970 | /** |
1971 | * Upgrade from V281 to V282 | |
1972 | */ | |
1973 | static BOOL H_UpgradeFromV281(int currVersion, int newVersion) | |
1974 | { | |
1975 | CHK_EXEC(SQLQuery(_T("DELETE FROM config WHERE var_name='WindowsConsoleUpgradeURL'"))); | |
1976 | CHK_EXEC(CreateConfigParam(_T("EnableObjectTransactions"), _T("0"), 1, 1)); | |
1977 | ||
1978 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='282' WHERE var_name='SchemaVersion'"))); | |
1979 | return TRUE; | |
1980 | } | |
1981 | ||
22aaa779 VK |
1982 | /** |
1983 | * Upgrade from V280 to V281 | |
1984 | */ | |
1985 | static BOOL H_UpgradeFromV280(int currVersion, int newVersion) | |
1986 | { | |
1987 | static TCHAR batch[] = | |
1988 | _T("DELETE FROM metadata WHERE var_name='TDataTableCreationCommand'\n") | |
1989 | _T("INSERT INTO metadata (var_name,var_value)") | |
1990 | _T(" VALUES ('TDataTableCreationCommand_0','CREATE TABLE tdata_%d (item_id integer not null,tdata_timestamp integer not null,record_id $SQL:INT64 not null)')\n") | |
1991 | _T("INSERT INTO metadata (var_name,var_value)") | |
1992 | _T(" VALUES ('TDataTableCreationCommand_1','CREATE TABLE tdata_records_%d (record_id $SQL:INT64 not null,row_id $SQL:INT64 not null,instance varchar(255) null,PRIMARY KEY(record_id,row_id))')\n") | |
1993 | _T("INSERT INTO metadata (var_name,var_value)") | |
1994 | _T(" VALUES ('TDataTableCreationCommand_2','CREATE TABLE tdata_rows_%d (row_id $SQL:INT64 not null,column_id integer not null,value varchar(255) null,PRIMARY KEY(row_id,column_id))')\n") | |
1995 | _T("INSERT INTO metadata (var_name,var_value)") | |
1996 | _T(" VALUES ('TDataIndexCreationCommand_1','CREATE INDEX idx_tdata_rec_%d_instance ON tdata_records_%d(instance)')\n") | |
1997 | _T("<END>"); | |
1998 | CHK_EXEC(SQLBatch(batch)); | |
1999 | ||
2f1bc68b VK |
2000 | RecreateTData(_T("nodes"), false, false); |
2001 | RecreateTData(_T("clusters"), false, false); | |
2002 | RecreateTData(_T("mobile_devices"), false, false); | |
22aaa779 VK |
2003 | |
2004 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='281' WHERE var_name='SchemaVersion'"))); | |
2005 | return TRUE; | |
2006 | } | |
2007 | ||
2008 | /** | |
2009 | * Upgrade from V279 to V280 | |
2010 | */ | |
2011 | static BOOL H_UpgradeFromV279(int currVersion, int newVersion) | |
2012 | { | |
2013 | static TCHAR batch[] = | |
2014 | _T("ALTER TABLE dc_table_columns ADD flags integer\n") | |
2015 | _T("UPDATE dc_table_columns SET flags=data_type\n") | |
2016 | _T("ALTER TABLE dc_table_columns DROP COLUMN data_type\n") | |
2017 | _T("<END>"); | |
2018 | CHK_EXEC(SQLBatch(batch)); | |
2019 | ||
2020 | DB_RESULT hResult = SQLSelect(_T("SELECT item_id,instance_column FROM dc_tables")); | |
2021 | if (hResult != NULL) | |
2022 | { | |
2023 | int count = DBGetNumRows(hResult); | |
2024 | for(int i = 0; i < count; i++) | |
2025 | { | |
2026 | TCHAR columnName[MAX_COLUMN_NAME] = _T(""); | |
2027 | DBGetField(hResult, i, 1, columnName, MAX_COLUMN_NAME); | |
2028 | if (columnName[0] != 0) | |
2029 | { | |
2030 | TCHAR query[256]; | |
2031 | _sntprintf(query, 256, _T("UPDATE dc_table_columns SET flags=flags+256 WHERE table_id=%d AND column_name=%s"), | |
2032 | DBGetFieldLong(hResult, i, 0), (const TCHAR *)DBPrepareString(g_hCoreDB, columnName)); | |
2033 | CHK_EXEC(SQLQuery(query)); | |
2034 | } | |
2035 | } | |
2036 | DBFreeResult(hResult); | |
2037 | } | |
2038 | else | |
2039 | { | |
2040 | if (!g_bIgnoreErrors) | |
2041 | return FALSE; | |
2042 | } | |
2043 | ||
2044 | CHK_EXEC(SQLQuery(_T("ALTER TABLE dc_tables DROP COLUMN instance_column"))); | |
2045 | ||
2046 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='280' WHERE var_name='SchemaVersion'"))); | |
2047 | return TRUE; | |
2048 | } | |
2049 | ||
22ee6d97 VK |
2050 | /** |
2051 | * Upgrade from V278 to V279 | |
2052 | */ | |
2053 | static BOOL H_UpgradeFromV278(int currVersion, int newVersion) | |
2054 | { | |
2055 | CHK_EXEC(CreateConfigParam(_T("DeleteEventsOfDeletedObject"), _T("1"), 1, 0)); | |
2056 | CHK_EXEC(CreateConfigParam(_T("DeleteAlarmsOfDeletedObject"), _T("1"), 1, 0)); | |
2057 | ||
2058 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='279' WHERE var_name='SchemaVersion'"))); | |
2059 | return TRUE; | |
2060 | } | |
2061 | ||
85ae39bc VK |
2062 | /** |
2063 | * Upgrade from V277 to V278 | |
2064 | */ | |
2065 | static BOOL H_UpgradeFromV277(int currVersion, int newVersion) | |
2066 | { | |
2067 | DB_RESULT hResult = SQLSelect(_T("SELECT id FROM clusters")); | |
2068 | if (hResult != NULL) | |
2069 | { | |
2070 | int count = DBGetNumRows(hResult); | |
2071 | for(int i = 0; i < count; i++) | |
2072 | { | |
2073 | DWORD id = DBGetFieldULong(hResult, i, 0); | |
2074 | if (!CreateIDataTable(id)) | |
2075 | { | |
2076 | if (!g_bIgnoreErrors) | |
2077 | { | |
2078 | DBFreeResult(hResult); | |
2079 | return FALSE; | |
2080 | } | |
2081 | } | |
22aaa779 | 2082 | if (!CreateTDataTable_preV281(id)) |
85ae39bc VK |
2083 | { |
2084 | if (!g_bIgnoreErrors) | |
2085 | { | |
2086 | DBFreeResult(hResult); | |
2087 | return FALSE; | |
2088 | } | |
2089 | } | |
2090 | } | |
2091 | DBFreeResult(hResult); | |
2092 | } | |
2093 | else | |
2094 | { | |
2095 | if (!g_bIgnoreErrors) | |
2096 | return FALSE; | |
2097 | } | |
2098 | ||
2099 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='278' WHERE var_name='SchemaVersion'"))); | |
2100 | return TRUE; | |
2101 | } | |
2102 | ||
62f41164 VK |
2103 | /** |
2104 | * Upgrade from V276 to V277 | |
2105 | */ | |
2106 | static BOOL H_UpgradeFromV276(int currVersion, int newVersion) | |
2107 | { | |
b4c2a628 VK |
2108 | CHK_EXEC(CreateTable(_T("CREATE TABLE dci_summary_tables (") |
2109 | _T("id integer not null,") | |
2110 | _T("menu_path varchar(255) not null,") | |
2111 | _T("title varchar(127) null,") | |
2112 | _T("node_filter $SQL:TEXT null,") | |
2113 | _T("flags integer not null,") | |
2114 | _T("columns $SQL:TEXT null,") | |
2115 | _T("PRIMARY KEY(id))"))); | |
2116 | ||
62f41164 VK |
2117 | CHK_EXEC(CreateConfigParam(_T("DefaultMapBackgroundColor"), _T("0xffffff"), 1, 0)); |
2118 | ||
2119 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='277' WHERE var_name='SchemaVersion'"))); | |
2120 | return TRUE; | |
2121 | } | |
2122 | ||
55bdca5a VK |
2123 | /** |
2124 | * Upgrade from V275 to V276 | |
2125 | */ | |
2126 | static BOOL H_UpgradeFromV275(int currVersion, int newVersion) | |
2127 | { | |
2128 | static TCHAR batch[] = | |
2129 | _T("ALTER TABLE dc_table_columns DROP COLUMN transformation_script\n") | |
2130 | _T("ALTER TABLE dc_tables ADD transformation_script $SQL:TEXT\n") | |
2131 | _T("<END>"); | |
2132 | CHK_EXEC(SQLBatch(batch)); | |
2133 | ||
2134 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='276' WHERE var_name='SchemaVersion'"))); | |
2135 | return TRUE; | |
2136 | } | |
2137 | ||
8715a84c VK |
2138 | /** |
2139 | * Upgrade from V274 to V275 | |
2140 | */ | |
2141 | static BOOL H_UpgradeFromV274(int currVersion, int newVersion) | |
2142 | { | |
2143 | static TCHAR batch[] = | |
2144 | _T("ALTER TABLE nodes ADD rack_image varchar(36)\n") | |
2145 | _T("ALTER TABLE nodes ADD rack_position integer\n") | |
2146 | _T("ALTER TABLE nodes ADD rack_id integer\n") | |
2147 | _T("UPDATE nodes SET rack_image='00000000-0000-0000-0000-000000000000',rack_position=0,rack_id=0\n") | |
2148 | _T("<END>"); | |
2149 | CHK_EXEC(SQLBatch(batch)); | |
2150 | ||
2151 | CHK_EXEC(CreateTable(_T("CREATE TABLE access_points (") | |
2152 | _T("id integer not null,") | |
2153 | _T("node_id integer not null,") | |
f1989a3a | 2154 | _T("mac_address varchar(12) null,") |
8715a84c VK |
2155 | _T("vendor varchar(64) null,") |
2156 | _T("model varchar(128) null,") | |
2157 | _T("serial_number varchar(64) null,") | |
2158 | _T("PRIMARY KEY(id))"))); | |
2159 | ||
2160 | CHK_EXEC(CreateTable(_T("CREATE TABLE racks (") | |
2161 | _T("id integer not null,") | |
2162 | _T("height integer not null,") | |
2163 | _T("PRIMARY KEY(id))"))); | |
2164 | ||
2165 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='275' WHERE var_name='SchemaVersion'"))); | |
2166 | return TRUE; | |
2167 | } | |
2168 | ||
d02f6b92 VK |
2169 | /** |
2170 | * Upgrade from V273 to V274 | |
2171 | */ | |
2172 | static BOOL H_UpgradeFromV273(int currVersion, int newVersion) | |
2173 | { | |
2174 | static TCHAR batch[] = | |
2175 | _T("ALTER TABLE items ADD samples integer\n") | |
2176 | _T("UPDATE items SET samples=0\n") | |
2177 | _T("<END>"); | |
2178 | CHK_EXEC(SQLBatch(batch)); | |
2179 | ||
2180 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='274' WHERE var_name='SchemaVersion'"))); | |
2181 | return TRUE; | |
2182 | } | |
2183 | ||
f05a8a45 VK |
2184 | /** |
2185 | * Upgrade from V272 to V273 | |
2186 | */ | |
2187 | static BOOL H_UpgradeFromV272(int currVersion, int newVersion) | |
2188 | { | |
2189 | CHK_EXEC(CreateConfigParam(_T("DefaultDCIRetentionTime"), _T("30"), 1, 0)); | |
2190 | CHK_EXEC(CreateConfigParam(_T("DefaultDCIPollingInterval"), _T("60"), 1, 0)); | |
2191 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='273' WHERE var_name='SchemaVersion'"))); | |
2192 | return TRUE; | |
2193 | } | |
2194 | ||
0f75f8fc VK |
2195 | /** |
2196 | * Upgrade from V271 to V272 | |
2197 | */ | |
2198 | static BOOL H_UpgradeFromV271(int currVersion, int newVersion) | |
2199 | { | |
2200 | CHK_EXEC(CreateConfigParam(_T("SNMPTrapLogRetentionTime"), _T("90"), 1, 0)); | |
28e1575f | 2201 | CHK_EXEC(SQLQuery(_T("ALTER TABLE nodes ADD driver_name varchar(32)\n"))); |
0f75f8fc VK |
2202 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='272' WHERE var_name='SchemaVersion'"))); |
2203 | return TRUE; | |
2204 | } | |
2205 | ||
86634c2c VK |
2206 | /** |
2207 | * Upgrade from V270 to V271 | |
2208 | */ | |
2209 | static BOOL H_UpgradeFromV270(int currVersion, int newVersion) | |
2210 | { | |
2211 | static TCHAR batch[] = | |
2212 | _T("ALTER TABLE object_properties ADD location_accuracy integer\n") | |
f2d5b2c4 VK |
2213 | _T("ALTER TABLE object_properties ADD location_timestamp integer\n") |
2214 | _T("UPDATE object_properties SET location_accuracy=0,location_timestamp=0\n") | |
86634c2c VK |
2215 | _T("<END>"); |
2216 | CHK_EXEC(SQLBatch(batch)); | |
2217 | ||
2218 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='271' WHERE var_name='SchemaVersion'"))); | |
2219 | return TRUE; | |
2220 | } | |
2221 | ||
afbe5388 VK |
2222 | /** |
2223 | * Upgrade from V269 to V270 | |
2224 | */ | |
2225 | static BOOL H_UpgradeFromV269(int currVersion, int newVersion) | |
2226 | { | |
6f33021d | 2227 | static TCHAR batch[] = |
afbe5388 VK |
2228 | _T("ALTER TABLE items ADD instd_method integer\n") |
2229 | _T("ALTER TABLE items ADD instd_data varchar(255)\n") | |
2230 | _T("ALTER TABLE items ADD instd_filter $SQL:TEXT\n") | |
2231 | _T("UPDATE items SET instd_method=0\n") | |
2232 | _T("<END>"); | |
2233 | CHK_EXEC(SQLBatch(batch)); | |
2234 | ||
2235 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='270' WHERE var_name='SchemaVersion'"))); | |
2236 | return TRUE; | |
2237 | } | |
2238 | ||
480e036b VK |
2239 | /** |
2240 | * Upgrade from V268 to V269 | |
2241 | */ | |
2242 | static BOOL H_UpgradeFromV268(int currVersion, int newVersion) | |
2243 | { | |
b69710b9 VK |
2244 | CHK_EXEC(ResizeColumn(_T("alarms"), _T("message"), 2000, true)); |
2245 | CHK_EXEC(ResizeColumn(_T("alarm_events"), _T("message"), 2000, true)); | |
2246 | CHK_EXEC(ResizeColumn(_T("event_log"), _T("event_message"), 2000, true)); | |
2247 | CHK_EXEC(ResizeColumn(_T("event_cfg"), _T("message"), 2000, true)); | |
2248 | CHK_EXEC(ResizeColumn(_T("event_policy"), _T("alarm_message"), 2000, true)); | |
2249 | CHK_EXEC(ResizeColumn(_T("items"), _T("name"), 1024, true)); | |
2250 | CHK_EXEC(ResizeColumn(_T("dc_tables"), _T("name"), 1024, true)); | |
480e036b VK |
2251 | |
2252 | CHK_EXEC(SetColumnNullable(_T("event_policy"), _T("alarm_key"))); | |
2253 | CHK_EXEC(SetColumnNullable(_T("event_policy"), _T("alarm_message"))); | |
2254 | CHK_EXEC(SetColumnNullable(_T("event_policy"), _T("comments"))); | |
2255 | CHK_EXEC(SetColumnNullable(_T("event_policy"), _T("situation_instance"))); | |
2256 | CHK_EXEC(SetColumnNullable(_T("event_policy"), _T("script"))); | |
2257 | CHK_EXEC(ConvertStrings(_T("event_policy"), _T("rule_id"), _T("alarm_key"))); | |
2258 | CHK_EXEC(ConvertStrings(_T("event_policy"), _T("rule_id"), _T("alarm_message"))); | |
2259 | CHK_EXEC(ConvertStrings(_T("event_policy"), _T("rule_id"), _T("comments"))); | |
2260 | CHK_EXEC(ConvertStrings(_T("event_policy"), _T("rule_id"), _T("situation_instance"))); | |
2261 | CHK_EXEC(ConvertStrings(_T("event_policy"), _T("rule_id"), _T("script"))); | |
2262 | ||
2263 | CHK_EXEC(SetColumnNullable(_T("policy_situation_attr_list"), _T("attr_value"))); | |
2264 | // convert strings in policy_situation_attr_list | |
2265 | DB_RESULT hResult = SQLSelect(_T("SELECT rule_id,situation_id,attr_name,attr_value FROM policy_situation_attr_list")); | |
2266 | if (hResult != NULL) | |
2267 | { | |
2268 | if (SQLQuery(_T("DELETE FROM policy_situation_attr_list"))) | |
2269 | { | |
2270 | TCHAR name[MAX_DB_STRING], value[MAX_DB_STRING], query[1024]; | |
2271 | int count = DBGetNumRows(hResult); | |
2272 | for(int i = 0; i < count; i++) | |
2273 | { | |
2274 | LONG ruleId = DBGetFieldLong(hResult, i, 0); | |
2275 | LONG situationId = DBGetFieldLong(hResult, i, 1); | |
2276 | DBGetField(hResult, i, 2, name, MAX_DB_STRING); | |
2277 | DBGetField(hResult, i, 3, value, MAX_DB_STRING); | |
2278 | ||
2279 | DecodeSQLString(name); | |
2280 | DecodeSQLString(value); | |
2281 | ||
2282 | if (name[0] == 0) | |
2283 | _tcscpy(name, _T("noname")); | |
2284 | ||
2285 | _sntprintf(query, 1024, _T("INSERT INTO policy_situation_attr_list (rule_id,situation_id,attr_name,attr_value) VALUES (%d,%d,%s,%s)"), | |
2286 | ruleId, situationId, (const TCHAR *)DBPrepareString(g_hCoreDB, name), (const TCHAR *)DBPrepareString(g_hCoreDB, value)); | |
2287 | if (!SQLQuery(query)) | |
2288 | { | |
2289 | if (!g_bIgnoreErrors) | |
2290 | { | |
2291 | DBFreeResult(hResult); | |
2292 | return FALSE; | |
2293 | } | |
2294 | } | |
2295 | } | |
2296 | } | |
2297 | else | |
2298 | { | |
2299 | if (!g_bIgnoreErrors) | |
2300 | { | |
2301 | DBFreeResult(hResult); | |
2302 | return FALSE; | |
2303 | } | |
2304 | } | |
2305 | DBFreeResult(hResult); | |
2306 | } | |
2307 | else | |
2308 | { | |
2309 | if (!g_bIgnoreErrors) | |
2310 | return FALSE; | |
2311 | } | |
2312 | ||
2313 | CHK_EXEC(SetColumnNullable(_T("event_cfg"), _T("description"))); | |
2314 | CHK_EXEC(SetColumnNullable(_T("event_cfg"), _T("message"))); | |
2315 | CHK_EXEC(ConvertStrings(_T("event_cfg"), _T("event_code"), _T("description"))); | |
2316 | CHK_EXEC(ConvertStrings(_T("event_cfg"), _T("event_code"), _T("message"))); | |
2317 | ||
2318 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='269' WHERE var_name='SchemaVersion'"))); | |
2319 | return TRUE; | |
2320 | } | |
2321 | ||
d6bf58f9 VK |
2322 | /** |
2323 | * Upgrade from V267 to V268 | |
2324 | */ | |
2325 | static BOOL H_UpgradeFromV267(int currVersion, int newVersion) | |
2326 | { | |
480e036b VK |
2327 | CHK_EXEC(SetColumnNullable(_T("network_services"), _T("check_request"))); |
2328 | CHK_EXEC(SetColumnNullable(_T("network_services"), _T("check_responce"))); | |
d6bf58f9 VK |
2329 | CHK_EXEC(ConvertStrings(_T("network_services"), _T("id"), _T("check_request"))); |
2330 | CHK_EXEC(ConvertStrings(_T("network_services"), _T("id"), _T("check_responce"))); | |
2331 | ||
480e036b | 2332 | CHK_EXEC(SetColumnNullable(_T("config"), _T("var_value"))); |
d6bf58f9 VK |
2333 | CHK_EXEC(ConvertStrings(_T("config"), _T("var_name"), NULL, _T("var_value"), true)); |
2334 | ||
480e036b | 2335 | CHK_EXEC(SetColumnNullable(_T("dci_schedules"), _T("schedule"))); |
d6bf58f9 VK |
2336 | CHK_EXEC(ConvertStrings(_T("dci_schedules"), _T("schedule_id"), _T("item_id"), _T("schedule"), false)); |
2337 | ||
2338 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='268' WHERE var_name='SchemaVersion'"))); | |
2339 | return TRUE; | |
2340 | } | |
2341 | ||
c1482463 VK |
2342 | /** |
2343 | * Upgrade from V266 to V267 | |
2344 | */ | |
2345 | static BOOL H_UpgradeFromV266(int currVersion, int newVersion) | |
2346 | { | |
2347 | CHK_EXEC(CreateEventTemplate(EVENT_NODE_UNREACHABLE, _T("SYS_NODE_UNREACHABLE"), EVENT_SEVERITY_CRITICAL, | |
2348 | EF_LOG, _T("Node unreachable because of network failure"), | |
2349 | _T("Generated when node is unreachable by management server because of network failure.\r\nParameters:\r\n No event-specific parameters"))); | |
2350 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='267' WHERE var_name='SchemaVersion'"))); | |
2351 | return TRUE; | |
2352 | } | |
2353 | ||
69bb7f47 VK |
2354 | /** |
2355 | * Upgrade from V265 to V266 | |
2356 | */ | |
2357 | static BOOL H_UpgradeFromV265(int currVersion, int newVersion) | |
2358 | { | |
2359 | // create index on root event ID in event log | |
2a964810 | 2360 | switch(g_dbSyntax) |
69bb7f47 VK |
2361 | { |
2362 | case DB_SYNTAX_MSSQL: | |
2363 | case DB_SYNTAX_PGSQL: | |
2364 | CHK_EXEC(SQLQuery(_T("CREATE INDEX idx_event_log_root_id ON event_log(root_event_id) WHERE root_event_id > 0"))); | |
2365 | break; | |
2366 | case DB_SYNTAX_ORACLE: | |
2367 | CHK_EXEC(SQLQuery(_T("CREATE OR REPLACE FUNCTION zero_to_null(id NUMBER) ") | |
2368 | _T("RETURN NUMBER ") | |
2369 | _T("DETERMINISTIC ") | |
2370 | _T("AS BEGIN") | |
2371 | _T(" IF id > 0 THEN") | |
2372 | _T(" RETURN id;") | |
2373 | _T(" ELSE") | |
2374 | _T(" RETURN NULL;") | |
2375 | _T(" END IF;") | |
2376 | _T("END;"))); | |
2377 | CHK_EXEC(SQLQuery(_T("CREATE INDEX idx_event_log_root_id ON event_log(zero_to_null(root_event_id))"))); | |
2378 | break; | |
2379 | default: | |
2380 | CHK_EXEC(SQLQuery(_T("CREATE INDEX idx_event_log_root_id ON event_log(root_event_id)"))); | |
2381 | break; | |
2382 | } | |
2383 | ||
2384 | CHK_EXEC(CreateTable(_T("CREATE TABLE mapping_tables (") | |
2385 | _T("id integer not null,") | |
2386 | _T("name varchar(63) not null,") | |
2387 | _T("flags integer not null,") | |
2388 | _T("description $SQL:TXT4K null,") | |
2389 | _T("PRIMARY KEY(id))"))); | |
2390 | ||
2391 | CHK_EXEC(CreateTable(_T("CREATE TABLE mapping_data (") | |
2392 | _T("table_id integer not null,") | |
2393 | _T("md_key varchar(63) not null,") | |
2394 | _T("md_value varchar(255) null,") | |
f41af2c4 | 2395 | _T("description $SQL:TXT4K null,") |
69bb7f47 VK |
2396 | _T("PRIMARY KEY(table_id,md_key))"))); |
2397 | ||
2398 | CHK_EXEC(SQLQuery(_T("DROP TABLE deleted_objects"))); | |
2399 | ||
2400 | CHK_EXEC(CreateConfigParam(_T("FirstFreeObjectId"), _T("100"), 0, 1, FALSE)); | |
2401 | ||
2402 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='266' WHERE var_name='SchemaVersion'"))); | |
2403 | return TRUE; | |
2404 | } | |
2405 | ||
b1e9b6b3 VK |
2406 | /** |
2407 | * Upgrade from V264 to V265 | |
2408 | */ | |
2409 | static BOOL H_UpgradeFromV264(int currVersion, int newVersion) | |
2410 | { | |
2411 | CHK_EXEC(CreateTable(_T("CREATE TABLE alarm_events (") | |
2412 | _T("alarm_id integer not null,") | |
2413 | _T("event_id $SQL:INT64 not null,") | |
2414 | _T("event_code integer not null,") | |
2415 | _T("event_name varchar(63) null,") | |
2416 | _T("severity integer not null,") | |
2417 | _T("source_object_id integer not null,") | |
2418 | _T("event_timestamp integer not null,") | |
2419 | _T("message varchar(255) null,") | |
2420 | _T("PRIMARY KEY(alarm_id,event_id))"))); | |
2421 | CHK_EXEC(SQLQuery(_T("CREATE INDEX idx_alarm_events_alarm_id ON alarm_events(alarm_id)"))); | |
2422 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='265' WHERE var_name='SchemaVersion'"))); | |
2423 | return TRUE; | |
2424 | } | |
2425 | ||
9aa67910 VK |
2426 | /** |
2427 | * Upgrade from V263 to V264 | |
2428 | */ | |
2429 | static BOOL H_UpgradeFromV263(int currVersion, int newVersion) | |
2430 | { | |
2431 | CHK_EXEC(CreateTable(_T("CREATE TABLE mobile_devices (") | |
2432 | _T("id integer not null,") | |
2433 | _T("device_id varchar(64) not null,") | |
2434 | _T("vendor varchar(64) null,") | |
2435 | _T("model varchar(128) null,") | |
2436 | _T("serial_number varchar(64) null,") | |
2437 | _T("os_name varchar(32) null,") | |
2438 | _T("os_version varchar(64) null,") | |
2439 | _T("user_id varchar(64) null,") | |
171c2fd6 | 2440 | _T("battery_level integer not null,") |
9aa67910 | 2441 | _T("PRIMARY KEY(id))"))); |
534e1b83 | 2442 | CHK_EXEC(CreateConfigParam(_T("MobileDeviceListenerPort"), _T("4747"), 1, 1)); |
9aa67910 VK |
2443 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='264' WHERE var_name='SchemaVersion'"))); |
2444 | return TRUE; | |
2445 | } | |
2446 | ||
84880c89 VK |
2447 | /** |
2448 | * Upgrade from V262 to V263 | |
2449 | */ | |
2450 | static BOOL H_UpgradeFromV262(int currVersion, int newVersion) | |
2451 | { | |
2452 | CHK_EXEC(SQLQuery(_T("ALTER TABLE network_maps ADD radius integer"))); | |
2453 | CHK_EXEC(SQLQuery(_T("UPDATE network_maps SET radius=-1"))); | |
2454 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='263' WHERE var_name='SchemaVersion'"))); | |
2455 | return TRUE; | |
2456 | } | |
2457 | ||
dc4a1aec AK |
2458 | /** |
2459 | * Upgrade from V261 to V262 | |
2460 | */ | |
2461 | static BOOL H_UpgradeFromV261(int currVersion, int newVersion) | |
2462 | { | |
534e1b83 | 2463 | CHK_EXEC(CreateConfigParam(_T("ApplyDCIFromTemplateToDisabledDCI"), _T("0"), 1, 1)); |
dc4a1aec AK |
2464 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='262' WHERE var_name='SchemaVersion'"))); |
2465 | return TRUE; | |
2466 | } | |
2467 | ||
4f50e45c VK |
2468 | /** |
2469 | * Upgrade from V260 to V261 | |
2470 | */ | |
2471 | static BOOL H_UpgradeFromV260(int currVersion, int newVersion) | |
2472 | { | |
534e1b83 | 2473 | CHK_EXEC(CreateConfigParam(_T("NumberOfBusinessServicePollers"), _T("10"), 1, 1)); |
4f50e45c VK |
2474 | CHK_EXEC(SQLQuery(_T("DELETE FROM config WHERE var_name='NumberOfEventProcessors'"))); |
2475 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='261' WHERE var_name='SchemaVersion'"))); | |
2476 | return TRUE; | |
2477 | } | |
a203ea53 | 2478 | |
4f50e45c VK |
2479 | /** |
2480 | * Upgrade from V259 to V260 | |
2481 | */ | |
a203ea53 AK |
2482 | static BOOL H_UpgradeFromV259(int currVersion, int newVersion) |
2483 | { | |
534e1b83 | 2484 | CHK_EXEC(CreateConfigParam(_T("UseFQDNForNodeNames"), _T("1"), 1, 1)); |
a203ea53 AK |
2485 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='260' WHERE var_name='SchemaVersion'"))); |
2486 | return TRUE; | |
2487 | } | |
2488 | ||
4f50e45c VK |
2489 | /** |
2490 | * Upgrade from V258 to V259 | |
2491 | */ | |
5da6ca46 VK |
2492 | static BOOL H_UpgradeFromV258(int currVersion, int newVersion) |
2493 | { | |
2494 | // have to made these columns nullable again because | |
2495 | // because they was forgotten as NOT NULL in schema.in | |
2496 | // and so some databases can still have them as NOT NULL | |
480e036b VK |
2497 | CHK_EXEC(SetColumnNullable(_T("templates"), _T("apply_filter"))); |
2498 | CHK_EXEC(SetColumnNullable(_T("containers"), _T("auto_bind_filter"))); | |
5da6ca46 VK |
2499 | |
2500 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='259' WHERE var_name='SchemaVersion'"))); | |
2501 | return TRUE; | |
2502 | } | |
2503 | ||
4f50e45c VK |
2504 | /** |
2505 | * Upgrade from V257 to V258 | |
2506 | */ | |
dd42ad0a AK |
2507 | static BOOL H_UpgradeFromV257(int currVersion, int newVersion) |
2508 | { | |
6f33021d | 2509 | static TCHAR batch[] = |
dd42ad0a AK |
2510 | _T("ALTER TABLE nodes ADD down_since integer\n") |
2511 | _T("UPDATE nodes SET down_since=0\n") | |
2512 | _T("<END>"); | |
2513 | ||
2514 | CHK_EXEC(SQLBatch(batch)); | |
2515 | ||
534e1b83 | 2516 | CHK_EXEC(CreateConfigParam(_T("DeleteUnreachableNodesPeriod"), _T("0"), 1, 1)); |
dd42ad0a AK |
2517 | |
2518 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='258' WHERE var_name='SchemaVersion'"))); | |
2519 | return TRUE; | |
2520 | } | |
aa16f82b | 2521 | |
534e1b83 VK |
2522 | /** |
2523 | * Upgrade from V256 to V257 | |
2524 | */ | |
e4acd770 VK |
2525 | static BOOL H_UpgradeFromV256(int currVersion, int newVersion) |
2526 | { | |
6f33021d | 2527 | static TCHAR batch[] = |
e4acd770 VK |
2528 | _T("ALTER TABLE network_maps ADD bg_color integer\n") |
2529 | _T("ALTER TABLE network_maps ADD link_routing integer\n") | |
2530 | _T("UPDATE network_maps SET bg_color=16777215,link_routing=1\n") | |
2531 | _T("ALTER TABLE network_map_links ADD routing integer\n") | |
2532 | _T("ALTER TABLE network_map_links ADD bend_points $SQL:TXT4K\n") | |
2533 | _T("UPDATE network_map_links SET routing=0\n") | |
2534 | _T("<END>"); | |
2535 | ||
2536 | CHK_EXEC(SQLBatch(batch)); | |
6f33021d | 2537 | |
e4acd770 VK |
2538 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='257' WHERE var_name='SchemaVersion'"))); |
2539 | return TRUE; | |
2540 | } | |
2541 | ||
534e1b83 VK |
2542 | /** |
2543 | * Upgrade from V255 to V256 | |
2544 | */ | |
aabe5b72 VK |
2545 | static BOOL H_UpgradeFromV255(int currVersion, int newVersion) |
2546 | { | |
534e1b83 VK |
2547 | CHK_EXEC(CreateConfigParam(_T("DefaultConsoleDateFormat"), _T("dd.MM.yyyy"), 1, 0)); |
2548 | CHK_EXEC(CreateConfigParam(_T("DefaultConsoleTimeFormat"), _T("HH:mm:ss"), 1, 0)); | |
aabe5b72 VK |
2549 | |
2550 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='256' WHERE var_name='SchemaVersion'"))); | |
2551 | return TRUE; | |
2552 | } | |
2553 | ||
480e036b VK |
2554 | /** |
2555 | * Upgrade from V254 to V255 | |
2556 | */ | |
5f6bc78c VK |
2557 | static BOOL H_UpgradeFromV254(int currVersion, int newVersion) |
2558 | { | |
6f33021d | 2559 | static TCHAR batch[] = |
5f6bc78c VK |
2560 | _T("ALTER TABLE alarms ADD resolved_by integer\n") |
2561 | _T("UPDATE alarms SET resolved_by=0\n") | |
2562 | _T("UPDATE alarms SET alarm_state=3 WHERE alarm_state=2\n") | |
2563 | _T("<END>"); | |
2564 | ||
2565 | CHK_EXEC(SQLBatch(batch)); | |
2566 | ||
3e9e0cc5 | 2567 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='255' WHERE var_name='SchemaVersion'"))); |
5f6bc78c VK |
2568 | return TRUE; |
2569 | } | |
40647141 | 2570 | |
badf9a95 VK |
2571 | /** |
2572 | * Upgrade from V253 to V254 | |
2573 | */ | |
40647141 VK |
2574 | static BOOL H_UpgradeFromV253(int currVersion, int newVersion) |
2575 | { | |
6f33021d | 2576 | static TCHAR batch[] = |
40647141 VK |
2577 | _T("ALTER TABLE network_maps ADD flags integer\n") |
2578 | _T("ALTER TABLE network_maps ADD link_color integer\n") | |
2579 | _T("UPDATE network_maps SET flags=1,link_color=-1\n") | |
2580 | _T("ALTER TABLE network_map_links ADD color integer\n") | |
2581 | _T("ALTER TABLE network_map_links ADD status_object integer\n") | |
2582 | _T("UPDATE network_map_links SET color=-1,status_object=0\n") | |
2583 | _T("<END>"); | |
2584 | ||
2585 | CHK_EXEC(SQLBatch(batch)); | |
2586 | ||
2587 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='254' WHERE var_name='SchemaVersion'"))); | |
2588 | return TRUE; | |
2589 | } | |
2590 | ||
d6bf58f9 VK |
2591 | /** |
2592 | * Upgrade from V252 to V253 | |
2593 | */ | |
feab3324 VK |
2594 | static BOOL H_UpgradeFromV252(int currVersion, int newVersion) |
2595 | { | |
480e036b | 2596 | CHK_EXEC(SetColumnNullable(_T("templates"), _T("apply_filter"))); |
242e9c7f VK |
2597 | CHK_EXEC(ConvertStrings(_T("templates"), _T("id"), _T("apply_filter"))); |
2598 | ||
480e036b | 2599 | CHK_EXEC(SetColumnNullable(_T("containers"), _T("auto_bind_filter"))); |
242e9c7f VK |
2600 | CHK_EXEC(ConvertStrings(_T("containers"), _T("id"), _T("auto_bind_filter"))); |
2601 | ||
6f33021d | 2602 | static TCHAR batch[] = |
feab3324 | 2603 | _T("ALTER TABLE templates ADD flags integer\n") |
2984ac95 VK |
2604 | _T("UPDATE templates SET flags=0 WHERE enable_auto_apply=0\n") |
2605 | _T("UPDATE templates SET flags=3 WHERE enable_auto_apply<>0\n") | |
feab3324 VK |
2606 | _T("ALTER TABLE templates DROP COLUMN enable_auto_apply\n") |
2607 | _T("ALTER TABLE containers ADD flags integer\n") | |
2984ac95 VK |
2608 | _T("UPDATE containers SET flags=0 WHERE enable_auto_bind=0\n") |
2609 | _T("UPDATE containers SET flags=3 WHERE enable_auto_bind<>0\n") | |
feab3324 VK |
2610 | _T("ALTER TABLE containers DROP COLUMN enable_auto_bind\n") |
2611 | _T("<END>"); | |
feab3324 VK |
2612 | CHK_EXEC(SQLBatch(batch)); |
2613 | ||
2614 | CHK_EXEC(CreateEventTemplate(EVENT_CONTAINER_AUTOBIND, _T("SYS_CONTAINER_AUTOBIND"), EVENT_SEVERITY_NORMAL, 1, | |
6f33021d | 2615 | _T("Node %2 automatically bound to container %4"), |
feab3324 VK |
2616 | _T("Generated when node bound to container object by autobind rule.\r\n") |
2617 | _T("Parameters:#\r\n") | |
2618 | _T(" 1) Node ID\r\n") | |
2619 | _T(" 2) Node name\r\n") | |
2620 | _T(" 3) Container ID\r\n") | |
2621 | _T(" 4) Container name") | |
2622 | )); | |
2623 | ||
2624 | CHK_EXEC(CreateEventTemplate(EVENT_CONTAINER_AUTOUNBIND, _T("SYS_CONTAINER_AUTOUNBIND"), EVENT_SEVERITY_NORMAL, 1, | |
6f33021d | 2625 | _T("Node %2 automatically unbound from container %4"), |
feab3324 VK |
2626 | _T("Generated when node unbound from container object by autobind rule.\r\n") |
2627 | _T("Parameters:#\r\n") | |
2628 | _T(" 1) Node ID\r\n") | |
2629 | _T(" 2) Node name\r\n") | |
2630 | _T(" 3) Container ID\r\n") | |
2631 | _T(" 4) Container name") | |
2632 | )); | |
2633 | ||
2634 | CHK_EXEC(CreateEventTemplate(EVENT_TEMPLATE_AUTOAPPLY, _T("SYS_TEMPLATE_AUTOAPPLY"), EVENT_SEVERITY_NORMAL, 1, | |
6f33021d | 2635 | _T("Template %4 automatically applied to node %2"), |
feab3324 VK |
2636 | _T("Generated when template applied to node by autoapply rule.\r\n") |
2637 | _T("Parameters:#\r\n") | |
2638 | _T(" 1) Node ID\r\n") | |
2639 | _T(" 2) Node name\r\n") | |
2640 | _T(" 3) Template ID\r\n") | |
2641 | _T(" 4) Template name") | |
2642 | )); | |
2643 | ||
2644 | CHK_EXEC(CreateEventTemplate(EVENT_TEMPLATE_AUTOREMOVE, _T("SYS_TEMPLATE_AUTOREMOVE"), EVENT_SEVERITY_NORMAL, 1, | |
6f33021d | 2645 | _T("Template %4 automatically removed from node %2"), |
feab3324 VK |
2646 | _T("Generated when template removed from node by autoapply rule.\r\n") |
2647 | _T("Parameters:#\r\n") | |
2648 | _T(" 1) Node ID\r\n") | |
2649 | _T(" 2) Node name\r\n") | |
2650 | _T(" 3) Template ID\r\n") | |
2651 | _T(" 4) Template name") | |
2652 | )); | |
2653 | ||
65790062 VK |
2654 | TCHAR buffer[64]; |
2655 | _sntprintf(buffer, 64, _T("%d"), ConfigReadInt(_T("AllowedCiphers"), 15) + 16); | |
2656 | CreateConfigParam(_T("AllowedCiphers"), buffer, 1, 1, TRUE); | |
2657 | ||
feab3324 VK |
2658 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='253' WHERE var_name='SchemaVersion'"))); |
2659 | return TRUE; | |
2660 | } | |
2661 | ||
badf9a95 VK |
2662 | /** |
2663 | * Upgrade from V251 to V252 | |
2664 | */ | |
1e6b68a6 VK |
2665 | static BOOL H_UpgradeFromV251(int currVersion, int newVersion) |
2666 | { | |
6f33021d | 2667 | static TCHAR batch[] = |
1e6b68a6 VK |
2668 | _T("ALTER TABLE interfaces ADD admin_state integer\n") |
2669 | _T("ALTER TABLE interfaces ADD oper_state integer\n") | |
2670 | _T("UPDATE interfaces SET admin_state=0,oper_state=0\n") | |
2671 | _T("<END>"); | |
2672 | ||
2673 | CHK_EXEC(SQLBatch(batch)); | |
2674 | ||
2675 | CHK_EXEC(CreateEventTemplate(EVENT_INTERFACE_UNEXPECTED_UP, _T("SYS_IF_UNEXPECTED_UP"), EVENT_SEVERITY_MAJOR, 1, | |
6f33021d | 2676 | _T("Interface \"%2\" unexpectedly changed state to UP (IP Addr: %3/%4, IfIndex: %5)"), |
1e6b68a6 VK |
2677 | _T("Generated when interface goes up but it's expected state set to DOWN.\r\n") |
2678 | _T("Please note that source of event is node, not an interface itself.\r\n") | |
2679 | _T("Parameters:#\r\n") | |
2680 | _T(" 1) Interface object ID\r\n") | |
2681 | _T(" 2) Interface name\r\n") | |
2682 | _T(" 3) Interface IP address\r\n") | |
2683 | _T(" 4) Interface netmask\r\n") | |
2684 | _T(" 5) Interface index") | |
2685 | )); | |
2686 | ||
2687 | CHK_EXEC(CreateEventTemplate(EVENT_INTERFACE_EXPECTED_DOWN, _T("SYS_IF_EXPECTED_DOWN"), EVENT_SEVERITY_NORMAL, 1, | |
6f33021d | 2688 | _T("Interface \"%2\" with expected state DOWN changed state to DOWN (IP Addr: %3/%4, IfIndex: %5)"), |
1e6b68a6 VK |
2689 | _T("Generated when interface goes down and it's expected state is DOWN.\r\n") |
2690 | _T("Please note that source of event is node, not an interface itself.\r\n") | |
2691 | _T("Parameters:#\r\n") | |
2692 | _T(" 1) Interface object ID\r\n") | |
2693 | _T(" 2) Interface name\r\n") | |
2694 | _T(" 3) Interface IP address\r\n") | |
2695 | _T(" 4) Interface netmask\r\n") | |
2696 | _T(" 5) Interface index") | |
2697 | )); | |
2698 | ||
2699 | // Create rule pair in event processing policy | |
2700 | int ruleId = 0; | |
2701 | DB_RESULT hResult = SQLSelect(_T("SELECT max(rule_id) FROM event_policy")); | |
2702 | if (hResult != NULL) | |
2703 | { | |
2704 | ruleId = DBGetFieldLong(hResult, 0, 0) + 1; | |
2705 | DBFreeResult(hResult); | |
2706 | } | |
2707 | ||
2708 | TCHAR query[1024]; | |
6f33021d | 2709 | _sntprintf(query, 1024, |
1e6b68a6 VK |
2710 | _T("INSERT INTO event_policy (rule_id,flags,comments,alarm_message,alarm_severity,alarm_key,") |
2711 | _T("script,alarm_timeout,alarm_timeout_event,situation_id,situation_instance) VALUES ") | |
2712 | _T("(%d,7944,'Show alarm when interface is unexpectedly up','%%m',5,'IF_UNEXP_UP_%%i_%%1',") | |
2713 | _T("'#00',0,%d,0,'#00')"), ruleId, EVENT_ALARM_TIMEOUT); | |
2714 | CHK_EXEC(SQLQuery(query)); | |
2715 | _sntprintf(query, 1024, _T("INSERT INTO policy_event_list (rule_id,event_code) VALUES (%d,%d)"), ruleId, EVENT_INTERFACE_UNEXPECTED_UP); | |
2716 | CHK_EXEC(SQLQuery(query)); | |
2717 | ruleId++; | |
2718 | ||
6f33021d | 2719 | _sntprintf(query, 1024, |
1e6b68a6 VK |
2720 | _T("INSERT INTO event_policy (rule_id,flags,comments,alarm_message,alarm_severity,alarm_key,") |
2721 | _T("script,alarm_timeout,alarm_timeout_event,situation_id,situation_instance) VALUES ") | |
2722 | _T("(%d,7944,'Acknowlege interface unexpectedly up alarms when interface goes down','%%m',") | |
2723 | _T("6,'IF_UNEXP_UP_%%i_%%1','#00',0,%d,0,'#00')"), ruleId, EVENT_ALARM_TIMEOUT); | |
2724 | CHK_EXEC(SQLQuery(query)); | |
2725 | _sntprintf(query, 1024, _T("INSERT INTO policy_event_list (rule_id,event_code) VALUES (%d,%d)"), ruleId, EVENT_INTERFACE_EXPECTED_DOWN); | |
2726 | CHK_EXEC(SQLQuery(query)); | |
2727 | ||
2728 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='252' WHERE var_name='SchemaVersion'"))); | |
2729 | return TRUE; | |
2730 | } | |
2731 | ||
9aa67910 VK |
2732 | /** |
2733 | * Upgrade from V250 to V251 | |
2734 | */ | |
711e5e9a VK |
2735 | static BOOL H_UpgradeFromV250(int currVersion, int newVersion) |
2736 | { | |
6f33021d | 2737 | static TCHAR batch[] = |
711e5e9a VK |
2738 | _T("ALTER TABLE thresholds ADD current_severity integer\n") |
2739 | _T("ALTER TABLE thresholds ADD last_event_timestamp integer\n") | |
2740 | _T("UPDATE thresholds SET current_severity=0,last_event_timestamp=0\n") | |
2741 | _T("<END>"); | |
2742 | ||
2743 | CHK_EXEC(SQLBatch(batch)); | |
2744 | ||
480e036b VK |
2745 | CHK_EXEC(SetColumnNullable(_T("thresholds"), _T("fire_value"))); |
2746 | CHK_EXEC(SetColumnNullable(_T("thresholds"), _T("rearm_value"))); | |
711e5e9a VK |
2747 | CHK_EXEC(ConvertStrings(_T("thresholds"), _T("threshold_id"), _T("fire_value"))); |
2748 | CHK_EXEC(ConvertStrings(_T("thresholds"), _T("threshold_id"), _T("rearm_value"))); | |
2749 | ||
2750 | CHK_EXEC(CreateConfigParam(_T("EnableNXSLContainerFunctions"), _T("1"), 1, 1)); | |
2751 | CHK_EXEC(CreateConfigParam(_T("UseDNSNameForDiscoveredNodes"), _T("0"), 1, 0)); | |
2752 | CHK_EXEC(CreateConfigParam(_T("AllowTrapVarbindsConversion"), _T("1"), 1, 1)); | |
2753 | ||
2754 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='251' WHERE var_name='SchemaVersion'"))); | |
2755 | return TRUE; | |
2756 | } | |
2757 | ||
9aa67910 VK |
2758 | /** |
2759 | * Upgrade from V249 to V250 | |
2760 | */ | |
ae2a3458 VK |
2761 | static BOOL H_UpgradeFromV249(int currVersion, int newVersion) |
2762 | { | |
2763 | CHK_EXEC(CreateTable(_T("CREATE TABLE licenses (") | |
2764 | _T("id integer not null,") | |
2765 | _T("content $SQL:TEXT null,") | |
2766 | _T("PRIMARY KEY(id))"))); | |
2767 | ||
2768 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='250' WHERE var_name='SchemaVersion'"))); | |
2769 | return TRUE; | |
2770 | } | |
2771 | ||
9aa67910 VK |
2772 | /** |
2773 | * Upgrade from V248 to V249 | |
2774 | */ | |
d6124fa0 VK |
2775 | #define TDATA_CREATE_QUERY _T("CREATE TABLE tdata_%d (item_id integer not null,tdata_timestamp integer not null,tdata_row integer not null,tdata_column integer not null,tdata_value varchar(255) null)") |
2776 | #define TDATA_INDEX_MSSQL _T("CREATE CLUSTERED INDEX idx_tdata_%d_id_timestamp ON tdata_%d(item_id,tdata_timestamp)") | |
2777 | #define TDATA_INDEX_PGSQL _T("CREATE INDEX idx_tdata_%d_timestamp_id ON tdata_%d(tdata_timestamp,item_id)") | |
2778 | #define TDATA_INDEX_DEFAULT _T("CREATE INDEX idx_tdata_%d_id_timestamp ON tdata_%d(item_id,tdata_timestamp)") | |
2779 | ||
2780 | static BOOL CreateTData(DWORD nodeId) | |
2781 | { | |
2782 | TCHAR query[256]; | |
2783 | ||
2784 | _sntprintf(query, 256, TDATA_CREATE_QUERY, (int)nodeId); | |
2785 | CHK_EXEC(SQLQuery(query)); | |
2786 | ||
2a964810 | 2787 | switch(g_dbSyntax) |
d6124fa0 VK |
2788 | { |
2789 | case DB_SYNTAX_MSSQL: | |
2790 | _sntprintf(query, 256, TDATA_INDEX_MSSQL, (int)nodeId, (int)nodeId); | |
2791 | break; | |
2792 | case DB_SYNTAX_PGSQL: | |
2793 | _sntprintf(query, 256, TDATA_INDEX_PGSQL, (int)nodeId, (int)nodeId); | |
2794 | break; | |
2795 | default: | |
2796 | _sntprintf(query, 256, TDATA_INDEX_DEFAULT, (int)nodeId, (int)nodeId); | |
2797 | break; | |
2798 | } | |
2799 | CHK_EXEC(SQLQuery(query)); | |
2800 | ||
2801 | return TRUE; | |
2802 | } | |
2803 | ||
2804 | static BOOL H_UpgradeFromV248(int currVersion, int newVersion) | |
2805 | { | |
2806 | CHK_EXEC(SQLQuery(_T("INSERT INTO metadata (var_name,var_value) VALUES ('TDataTableCreationCommand','") TDATA_CREATE_QUERY _T("')"))); | |
2807 | ||
2a964810 | 2808 | switch(g_dbSyntax) |
d6124fa0 VK |
2809 | { |
2810 | case DB_SYNTAX_MSSQL: | |
2811 | CHK_EXEC(SQLQuery(_T("INSERT INTO metadata (var_name,var_value) VALUES ('TDataIndexCreationCommand_0','") TDATA_INDEX_MSSQL _T("')"))); | |
2812 | break; | |
2813 | case DB_SYNTAX_PGSQL: | |
2814 | CHK_EXEC(SQLQuery(_T("INSERT INTO metadata (var_name,var_value) VALUES ('TDataIndexCreationCommand_0','") TDATA_INDEX_PGSQL _T("')"))); | |
2815 | break; | |
2816 | default: | |
2817 | CHK_EXEC(SQLQuery(_T("INSERT INTO metadata (var_name,var_value) VALUES ('TDataIndexCreationCommand_0','") TDATA_INDEX_DEFAULT _T("')"))); | |
2818 | break; | |
2819 | } | |
2820 | ||
2821 | CHK_EXEC(CreateTable(_T("CREATE TABLE dct_column_names (") | |
2822 | _T("column_id integer not null,") | |
2823 | _T("column_name varchar(63) not null,") | |
2824 | _T("PRIMARY KEY(column_id))"))); | |
2825 | ||
2826 | DB_RESULT hResult = SQLSelect(_T("SELECT id FROM nodes")); | |
2827 | if (hResult != NULL) | |
2828 | { | |
2829 | int count = DBGetNumRows(hResult); | |
2830 | for(int i = 0 ; i < count; i++) | |
2831 | { | |
2832 | if (!CreateTData(DBGetFieldULong(hResult, i, 0))) | |
2833 | { | |
2834 | if (!g_bIgnoreErrors) | |
2835 | { | |
2836 | DBFreeResult(hResult); | |
2837 | return FALSE; | |
2838 | } | |
2839 | } | |
2840 | } | |
2841 | DBFreeResult(hResult); | |
2842 | } | |
2843 | else | |
2844 | { | |
2845 | if (!g_bIgnoreErrors) | |
2846 | return FALSE; | |
2847 | } | |
2848 | ||
2849 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='249' WHERE var_name='SchemaVersion'"))); | |
2850 | return TRUE; | |
2851 | } | |
2852 | ||
480e036b VK |
2853 | /** |
2854 | * Upgrade from V247 to V248 | |
2855 | */ | |
cc8ce218 VK |
2856 | static BOOL H_UpgradeFromV247(int currVersion, int newVersion) |
2857 | { | |
2858 | CHK_EXEC(CreateTable(_T("CREATE TABLE dc_tables (") | |
2859 | _T("item_id integer not null,") | |
2860 | _T("node_id integer not null,") | |
2861 | _T("template_id integer not null,") | |
2862 | _T("template_item_id integer not null,") | |
2863 | _T("name varchar(255) null,") | |
2864 | _T("instance_column varchar(63) null,") | |
2865 | _T("description varchar(255) null,") | |
2866 | _T("flags integer not null,") | |
2867 | _T("source integer not null,") | |
2868 | _T("snmp_port integer not null,") | |
2869 | _T("polling_interval integer not null,") | |
2870 | _T("retention_time integer not null,") | |
2871 | _T("status integer not null,") | |
2872 | _T("system_tag varchar(255) null,") | |
2873 | _T("resource_id integer not null,") | |
2874 | _T("proxy_node integer not null,") | |
2875 | _T("perftab_settings $SQL:TEXT null,") | |
2876 | _T("PRIMARY KEY(item_id))"))); | |
2877 | ||
2878 | CHK_EXEC(CreateTable(_T("CREATE TABLE dc_table_columns (") | |
2879 | _T("table_id integer not null,") | |
2880 | _T("column_name varchar(63) not null,") | |
2881 | _T("snmp_oid varchar(1023) null,") | |
2882 | _T("data_type integer not null,") | |
2883 | _T("transformation_script $SQL:TEXT null,") | |
2884 | _T("PRIMARY KEY(table_id,column_name))"))); | |
2885 | ||
2886 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='248' WHERE var_name='SchemaVersion'"))); | |
2887 | return TRUE; | |
2888 | } | |
2889 | ||
480e036b VK |
2890 | /** |
2891 | * Upgrade from V246 to V247 | |
2892 | */ | |
ff392ecf VK |
2893 | static BOOL H_UpgradeFromV246(int currVersion, int newVersion) |
2894 | { | |
2895 | static TCHAR insertQuery[] = _T("INSERT INTO object_custom_attributes (object_id,attr_name,attr_value) VALUES (?,?,?)"); | |
2896 | ||
480e036b | 2897 | CHK_EXEC(SetColumnNullable(_T("object_custom_attributes"), _T("attr_value"))); |
ff392ecf VK |
2898 | |
2899 | // Convert strings in object_custom_attributes table | |
2900 | DB_RESULT hResult = SQLSelect(_T("SELECT object_id,attr_name,attr_value FROM object_custom_attributes")); | |
2901 | if (hResult != NULL) | |
2902 | { | |
2903 | if (SQLQuery(_T("DELETE FROM object_custom_attributes"))) | |
2904 | { | |
2905 | TCHAR errorText[DBDRV_MAX_ERROR_TEXT]; | |
2906 | DB_STATEMENT hStmt = DBPrepareEx(g_hCoreDB, insertQuery, errorText); | |
2907 | if (hStmt != NULL) | |
2908 | { | |
2909 | TCHAR name[128], *value; | |
2910 | int count = DBGetNumRows(hResult); | |
2911 | for(int i = 0; i < count; i++) | |
2912 | { | |
967893bb | 2913 | UINT32 id = DBGetFieldULong(hResult, i, 0); |
ff392ecf VK |
2914 | DBGetField(hResult, i, 1, name, 128); |
2915 | DecodeSQLString(name); | |
2916 | value = DBGetField(hResult, i, 2, NULL, 0); | |
2917 | DecodeSQLString(value); | |
2918 | ||
2919 | DBBind(hStmt, 1, DB_SQLTYPE_INTEGER, id); | |
2920 | DBBind(hStmt, 2, DB_SQLTYPE_VARCHAR, name, DB_BIND_STATIC); | |
2921 | DBBind(hStmt, 3, DB_SQLTYPE_VARCHAR, value, DB_BIND_DYNAMIC); | |
2922 | if (g_bTrace) | |
2923 | ShowQuery(insertQuery); | |
2924 | if (!DBExecuteEx(hStmt, errorText)) | |
2925 | { | |
2926 | WriteToTerminalEx(_T("SQL query failed (%s):\n\x1b[33;1m%s\x1b[0m\n"), errorText, insertQuery); | |
2927 | if (!g_bIgnoreErrors) | |
2928 | { | |
2929 | DBFreeStatement(hStmt); | |
2930 | DBFreeResult(hResult); | |
2931 | return FALSE; | |
2932 | } | |
2933 | } | |
2934 | } | |
2935 | DBFreeStatement(hStmt); | |
2936 | } | |
2937 | else | |
2938 | { | |
2939 | WriteToTerminalEx(_T("SQL query failed (%s):\n\x1b[33;1m%s\x1b[0m\n"), errorText, insertQuery); | |
2940 | if (!g_bIgnoreErrors) | |
2941 | { | |
2942 | DBFreeResult(hResult); | |
2943 | return FALSE; | |
2944 | } | |
2945 | } | |
2946 | } | |
2947 | else | |
2948 | { | |
2949 | if (!g_bIgnoreErrors) | |
2950 | { | |
2951 | DBFreeResult(hResult); | |
2952 | return FALSE; | |
2953 | } | |
2954 | } | |
2955 | ||
2956 | DBFreeResult(hResult); | |
2957 | } | |
2958 | else | |
2959 | { | |
2960 | if (!g_bIgnoreErrors) | |
2961 | return FALSE; | |
2962 | } | |
2963 | ||
2964 | CHK_EXEC(SQLQuery(_T("CREATE INDEX idx_ocattr_oid ON object_custom_attributes(object_id)"))); | |
2965 | CHK_EXEC(CreateConfigParam(_T("AlarmHistoryRetentionTime"), _T("180"), 1, 0)); | |
2966 | ||
2967 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='247' WHERE var_name='SchemaVersion'"))); | |
2968 | return TRUE; | |
2969 | } | |
2970 | ||
d6bf58f9 VK |
2971 | /** |
2972 | * Upgrade from V245 to V246 | |
2973 | */ | |
98cd01bb VK |
2974 | static BOOL H_UpgradeFromV245(int currVersion, int newVersion) |
2975 | { | |
6f33021d | 2976 | static TCHAR batch[] = |
98cd01bb VK |
2977 | _T("ALTER TABLE snmp_trap_pmap ADD flags integer\n") |
2978 | _T("UPDATE snmp_trap_pmap SET flags=0\n") | |
2979 | _T("<END>"); | |
2980 | ||
2981 | CHK_EXEC(SQLBatch(batch)); | |
2982 | ||
480e036b | 2983 | CHK_EXEC(SetColumnNullable(_T("snmp_trap_pmap"), _T("description"))); |
d6bf58f9 | 2984 | CHK_EXEC(ConvertStrings(_T("snmp_trap_pmap"), _T("trap_id"), _T("parameter"), _T("description"), false)); |
6f33021d | 2985 | |
480e036b | 2986 | CHK_EXEC(SetColumnNullable(_T("cluster_resources"), _T("resource_name"))); |
d6bf58f9 | 2987 | CHK_EXEC(ConvertStrings(_T("cluster_resources"), _T("cluster_id"), _T("resource_id"), _T("resource_name"), false)); |
6f33021d | 2988 | |
98cd01bb VK |
2989 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='246' WHERE var_name='SchemaVersion'"))); |
2990 | return TRUE; | |
2991 | } | |
2992 | ||
d6bf58f9 VK |
2993 | /** |
2994 | * Upgrade from V244 to V245 | |
2995 | */ | |
4866d57b VK |
2996 | static BOOL H_UpgradeFromV244(int currVersion, int newVersion) |
2997 | { | |
6f33021d | 2998 | static TCHAR batch[] = |
4866d57b VK |
2999 | _T("ALTER TABLE nodes ADD runtime_flags integer\n") |
3000 | _T("UPDATE nodes SET runtime_flags=0\n") | |
3001 | _T("<END>"); | |
3002 | ||
3003 | CHK_EXEC(SQLBatch(batch)); | |
3004 | ||
480e036b VK |
3005 | CHK_EXEC(SetColumnNullable(_T("actions"), _T("rcpt_addr"))); |
3006 | CHK_EXEC(SetColumnNullable(_T("actions"), _T("email_subject"))); | |
3007 | CHK_EXEC(SetColumnNullable(_T("actions"), _T("action_data"))); | |
4866d57b VK |
3008 | |
3009 | CHK_EXEC(ConvertStrings(_T("actions"), _T("action_id"), _T("rcpt_addr"))); | |
3010 | CHK_EXEC(ConvertStrings(_T("actions"), _T("action_id"), _T("email_subject"))); | |
3011 | CHK_EXEC(ConvertStrings(_T("actions"), _T("action_id"), _T("action_data"))); | |
6f33021d | 3012 | |
4866d57b VK |
3013 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='245' WHERE var_name='SchemaVersion'"))); |
3014 | return TRUE; | |
3015 | } | |
3016 | ||
3017 | ||
aa16f82b VK |
3018 | // |
3019 | // Upgrade from V243 to V244 | |
3020 | // | |
3021 | ||
3022 | static BOOL H_UpgradeFromV243(int currVersion, int newVersion) | |
3023 | { | |
6f33021d | 3024 | static TCHAR batch[] = |
aa16f82b VK |
3025 | _T("ALTER TABLE interfaces ADD dot1x_pae_state integer\n") |
3026 | _T("ALTER TABLE interfaces ADD dot1x_backend_state integer\n") | |
3027 | _T("UPDATE interfaces SET dot1x_pae_state=0,dot1x_backend_state=0\n") | |
3028 | _T("<END>"); | |
3029 | ||
3030 | CHK_EXEC(SQLBatch(batch)); | |
3031 | ||
3032 | CHK_EXEC(CreateEventTemplate(EVENT_8021X_PAE_STATE_CHANGED, _T("SYS_8021X_PAE_STATE_CHANGED"), | |
6f33021d | 3033 | EVENT_SEVERITY_NORMAL, 1, _T("Port %6 PAE state changed from %4 to %2"), |
aa16f82b VK |
3034 | _T("Generated when switch port PAE state changed.\r\nParameters:\r\n") |
3035 | _T(" 1) New PAE state code\r\n") | |
3036 | _T(" 2) New PAE state as text\r\n") | |
3037 | _T(" 3) Old PAE state code\r\n") | |
3038 | _T(" 4) Old PAE state as text\r\n") | |
3039 | _T(" 5) Interface index\r\n") | |
3040 | _T(" 6) Interface name"))); | |
3041 | ||
3042 | CHK_EXEC(CreateEventTemplate(EVENT_8021X_BACKEND_STATE_CHANGED, _T("SYS_8021X_BACKEND_STATE_CHANGED"), | |
6f33021d | 3043 | EVENT_SEVERITY_NORMAL, 1, _T("Port %6 backend authentication state changed from %4 to %2"), |
aa16f82b VK |
3044 | _T("Generated when switch port backend authentication state changed.\r\nParameters:\r\n") |
3045 | _T(" 1) New backend state code\r\n") | |
3046 | _T(" 2) New backend state as text\r\n") | |
3047 | _T(" 3) Old backend state code\r\n") | |
3048 | _T(" 4) Old backend state as text\r\n") | |
3049 | _T(" 5) Interface index\r\n") | |
3050 | _T(" 6) Interface name"))); | |
3051 | ||
3052 | CHK_EXEC(CreateEventTemplate(EVENT_8021X_PAE_FORCE_UNAUTH, _T("SYS_8021X_PAE_FORCE_UNAUTH"), | |
6f33021d | 3053 | EVENT_SEVERITY_MAJOR, 1, _T("Port %2 switched to force unauthorize state"), |
aa16f82b VK |
3054 | _T("Generated when switch port PAE state changed to FORCE UNAUTHORIZE.\r\nParameters:\r\n") |
3055 | _T(" 1) Interface index\r\n") | |
3056 | _T(" 2) Interface name"))); | |
3057 | ||
3058 | CHK_EXEC(CreateEventTemplate(EVENT_8021X_AUTH_FAILED, _T("SYS_8021X_AUTH_FAILED"), | |
6f33021d | 3059 | EVENT_SEVERITY_MAJOR, 1, _T("802.1x authentication failed on port %2"), |
aa16f82b VK |
3060 | _T("Generated when switch port backend authentication state changed to FAIL.\r\nParameters:\r\n") |
3061 | _T(" 1) Interface index\r\n") | |
3062 | _T(" 2) Interface name"))); | |
3063 | ||
3064 | CHK_EXEC(CreateEventTemplate(EVENT_8021X_AUTH_TIMEOUT, _T("SYS_8021X_AUTH_TIMEOUT"), | |
6f33021d | 3065 | EVENT_SEVERITY_MAJOR, 1, _T("802.1x authentication time out on port %2"), |
aa16f82b VK |
3066 | _T("Generated when switch port backend authentication state changed to TIMEOUT.\r\nParameters:\r\n") |
3067 | _T(" 1) Interface index\r\n") | |
3068 | _T(" 2) Interface name"))); | |
3069 | ||
3070 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='244' WHERE var_name='SchemaVersion'"))); | |
3071 | return TRUE; | |
3072 | } | |
3073 | ||
3074 | ||
e320f8ce VK |
3075 | // |
3076 | // Upgrade from V242 to V243 | |
3077 | // | |
3078 | ||
3079 | static BOOL H_UpgradeFromV242(int currVersion, int newVersion) | |
3080 | { | |
6f33021d | 3081 | static TCHAR batch[] = |
242e9c7f VK |
3082 | _T("ALTER TABLE items ADD snmp_raw_value_type integer\n") |
3083 | _T("UPDATE items SET snmp_raw_value_type=0\n") | |
e320f8ce VK |
3084 | _T("ALTER TABLE items ADD flags integer\n") |
3085 | _T("UPDATE items SET flags=adv_schedule+(all_thresholds*2)\n") | |
3086 | _T("ALTER TABLE items DROP COLUMN adv_schedule\n") | |
3087 | _T("ALTER TABLE items DROP COLUMN all_thresholds\n") | |
e320f8ce VK |
3088 | _T("<END>"); |
3089 | ||
3090 | CHK_EXEC(SQLBatch(batch)); | |
3091 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='243' WHERE var_name='SchemaVersion'"))); | |
3092 | return TRUE; | |
3093 | } | |
3094 | ||
3095 | ||
f5e80875 VK |
3096 | // |
3097 | // Upgrade from V241 to V242 | |
3098 | // | |
3099 | ||
3100 | static BOOL H_UpgradeFromV241(int currVersion, int newVersion) | |
3101 | { | |
6f33021d | 3102 | static TCHAR batch[] = |
f5e80875 VK |
3103 | _T("DROP TABLE business_service_templates\n") |
3104 | _T("ALTER TABLE dashboards ADD options integer\n") | |
3105 | _T("UPDATE dashboards SET options=0\n") | |
3106 | _T("<END>"); | |
3107 | ||
3108 | CHK_EXEC(SQLBatch(batch)); | |
3109 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='242' WHERE var_name='SchemaVersion'"))); | |
3110 | return TRUE; | |
3111 | } | |
3112 | ||
3113 | ||
6ff21d27 VK |
3114 | // |
3115 | // Upgrade from V240 to V241 | |
3116 | // | |
3117 | ||
3118 | static BOOL H_UpgradeFromV240(int currVersion, int newVersion) | |
3119 | { | |
6f33021d | 3120 | static TCHAR batch[] = |
6ff21d27 VK |
3121 | _T("ALTER TABLE slm_checks ADD template_id integer\n") |
3122 | _T("ALTER TABLE slm_checks ADD current_ticket integer\n") | |
3123 | _T("UPDATE slm_checks SET template_id=0,current_ticket=0\n") | |
3124 | _T("<END>"); | |
3125 | ||
3126 | CHK_EXEC(SQLBatch(batch)); | |
3127 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='241' WHERE var_name='SchemaVersion'"))); | |
3128 | return TRUE; | |
3129 | } | |
3130 | ||
3131 | ||
5fe19f9e VK |
3132 | // |
3133 | // Upgrade from V239 to V240 | |
3134 | // | |
3135 | ||
3136 | static BOOL H_UpgradeFromV239(int currVersion, int newVersion) | |
3137 | { | |
3138 | CHK_EXEC(SQLQuery(_T("ALTER TABLE raw_dci_values ADD transformed_value varchar(255)"))); | |
3139 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='240' WHERE var_name='SchemaVersion'"))); | |
3140 | return TRUE; | |
3141 | } | |
3142 | ||
3143 | ||
5a7d6a10 VK |
3144 | // |
3145 | // Upgrade from V238 to V239 | |
3146 | // | |
3147 | ||
3148 | static BOOL H_UpgradeFromV238(int currVersion, int newVersion) | |
3149 | { | |
3150 | CHK_EXEC(SQLQuery( | |
3151 | _T("INSERT INTO event_cfg (event_code,event_name,severity,flags,message,description) VALUES ") | |
3152 | _T("(56,'SYS_IP_ADDRESS_CHANGED',1,1,'Primary IP address changed from %2 to %1',") | |
3153 | _T("'Generated when primary IP address changed (usually because of primary name change or DNS change).#0D#0A") | |
3154 | _T("Parameters:#0D#0A 1) New IP address#0D#0A 2) Old IP address#0D#0A 3) Primary host name')"))); | |
3155 | ||
3156 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='239' WHERE var_name='SchemaVersion'"))); | |
3157 | return TRUE; | |
3158 | } | |
3159 | ||
3160 | ||
34ccf87f VK |
3161 | // |
3162 | // Upgrade from V232 to V238 | |
3163 | // | |
3164 | ||
3165 | static BOOL H_UpgradeFromV232toV238(int currVersion, int newVersion) | |
3166 | { | |
3167 | CHK_EXEC(CreateTable(_T("CREATE TABLE slm_checks (") | |
3168 | _T("id integer not null,") | |
3169 | _T("type integer not null,") | |
3170 | _T("content $SQL:TEXT null,") | |
3171 | _T("threshold_id integer not null,") | |
3172 | _T("reason varchar(255) null,") | |
3173 | _T("is_template integer not null,") | |
3174 | _T("PRIMARY KEY(id))"))); | |
3175 | ||
3176 | CHK_EXEC(CreateTable(_T("CREATE TABLE slm_tickets (") | |
3177 | _T("ticket_id integer not null,") | |
3178 | _T("service_id integer not null,") | |
3179 | _T("check_id integer not null,") | |
3180 | _T("create_timestamp integer not null,") | |
3181 | _T("close_timestamp integer not null,") | |
3182 | _T("reason varchar(255) null,") | |
3183 | _T("PRIMARY KEY(ticket_id))"))); | |
3184 | ||
3185 | CHK_EXEC(CreateTable(_T("CREATE TABLE slm_service_history (") | |
3186 | _T("record_id integer not null,") | |
3187 | _T("service_id integer not null,") | |
3188 | _T("change_timestamp integer not null,") | |
3189 | _T("new_status integer not null,") | |
3190 | _T("PRIMARY KEY(record_id))"))); | |
3191 | ||
3192 | CHK_EXEC(CreateTable(_T("CREATE TABLE report_results (") | |
3193 | _T("report_id integer not null,") | |
3194 | _T("generated integer not null,") | |
3195 | _T("job_id integer not null,") | |
3196 | _T("PRIMARY KEY(report_id,job_id))"))); | |
3197 | ||
3198 | CHK_EXEC(CreateTable(_T("CREATE TABLE reports (") | |
3199 | _T("id integer not null,") | |
3200 | _T("definition $SQL:TEXT null,") | |
3201 | _T("PRIMARY KEY(id))"))); | |
3202 | ||
3203 | CHK_EXEC(CreateTable(_T("CREATE TABLE job_history (") | |
3204 | _T("id integer not null,") | |
3205 | _T("time_created integer not null,") | |
3206 | _T("time_started integer not null,") | |
3207 | _T("time_finished integer not null,") | |
3208 | _T("job_type varchar(127) null,") | |
3209 | _T("description varchar(255) null,") | |
3210 | _T("additional_info varchar(255) null,") | |
3211 | _T("node_id integer not null,") | |
3212 | _T("user_id integer not null,") | |
3213 | _T("status integer not null,") | |
3214 | _T("failure_message varchar(255) null,") | |
3215 | _T("PRIMARY KEY(id))"))); | |
3216 | ||
3217 | CHK_EXEC(CreateTable(_T("CREATE TABLE business_services (") | |
3218 | _T("service_id integer not null,") | |
3219 | _T("PRIMARY KEY(service_id))"))); | |
3220 | ||
3221 | CHK_EXEC(CreateTable(_T("CREATE TABLE business_service_templates (") | |
3222 | _T("service_id integer not null,") | |
3223 | _T("template_id integer not null,") | |
3224 | _T("PRIMARY KEY(service_id,template_id))"))); | |
3225 | ||
3226 | CHK_EXEC(CreateTable(_T("CREATE TABLE node_links (") | |
3227 | _T("nodelink_id integer not null,") | |
3228 | _T("node_id integer not null,") | |
3229 | _T("PRIMARY KEY(nodelink_id))"))); | |
3230 | ||
3231 | CHK_EXEC(CreateTable(_T("CREATE TABLE slm_agreements (") | |
3232 | _T("agreement_id integer not null,") | |
3233 | _T("service_id integer not null,") | |
3234 | _T("org_id integer not null,") | |
3235 | _T("uptime varchar(63) not null,") | |
3236 | _T("period integer not null,") | |
3237 | _T("start_date integer not null,") | |
3238 | _T("notes varchar(255),") | |
3239 | _T("PRIMARY KEY(agreement_id))"))); | |
3240 | ||
3241 | CHK_EXEC(CreateTable(_T("CREATE TABLE organizations (") | |
3242 | _T("id integer not null,") | |
3243 | _T("parent_id integer not null,") | |
3244 | _T("org_type integer not null,") | |
3245 | _T("name varchar(63) not null,") | |
3246 | _T("description varchar(255),") | |
3247 | _T("manager integer not null,") | |
3248 | _T("PRIMARY KEY(id))"))); | |
3249 | ||
3250 | CHK_EXEC(CreateTable(_T("CREATE TABLE persons (") | |
3251 | _T("id integer not null,") | |
3252 | _T("org_id integer not null,") | |
3253 | _T("first_name varchar(63),") | |
3254 | _T("last_name varchar(63),") | |
3255 | _T("title varchar(255),") | |
3256 | _T("status integer not null,") | |
3257 | _T("PRIMARY KEY(id))"))); | |
3258 | ||
3259 | CHK_EXEC(CreateConfigParam(_T("JobHistoryRetentionTime"), _T("90"), 1, 0)); | |
3260 | ||
3261 | CHK_EXEC(SQLQuery(_T("UPDATE event_cfg SET description=") | |
3262 | _T("'Generated when threshold check is rearmed for specific data collection item.#0D#0A") | |
3263 | _T("Parameters:#0D#0A") | |
3264 | _T(" 1) Parameter name#0D#0A") | |
3265 | _T(" 2) Item description#0D#0A") | |
3266 | _T(" 3) Data collection item ID#0D#0A") | |
3267 | _T(" 4) Instance#0D#0A") | |
3268 | _T(" 5) Threshold value#0D#0A") | |
3269 | _T(" 6) Actual value' WHERE event_code=18"))); | |
3270 | ||
3271 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='238' WHERE var_name='SchemaVersion'"))); | |
3272 | return TRUE; | |
3273 | } | |
3274 | ||
3275 | ||
9c529287 VK |
3276 | // |
3277 | // Upgrade from V237 to V238 | |
3278 | // | |
3279 | ||
3280 | static BOOL H_UpgradeFromV237(int currVersion, int newVersion) | |
3281 | { | |
6f33021d | 3282 | static TCHAR batch[] = |
9c529287 VK |
3283 | _T("DROP TABLE slm_check_templates\n") |
3284 | _T("DROP TABLE node_link_checks\n") | |
3285 | _T("DROP TABLE slm_checks\n") | |
3286 | _T("DROP TABLE slm_tickets\n") | |
3287 | _T("<END>"); | |
3288 | ||
3289 | CHK_EXEC(SQLBatch(batch)); | |
3290 | ||
3291 | CHK_EXEC(CreateTable(_T("CREATE TABLE slm_checks (") | |
3292 | _T("id integer not null,") | |
3293 | _T("type integer not null,") | |
3294 | _T("content $SQL:TEXT null,") | |
3295 | _T("threshold_id integer not null,") | |
3296 | _T("reason varchar(255) null,") | |
3297 | _T("is_template integer not null,") | |
3298 | _T("PRIMARY KEY(id))"))); | |
3299 | ||
3300 | CHK_EXEC(CreateTable(_T("CREATE TABLE slm_tickets (") | |
3301 | _T("ticket_id integer not null,") | |
3302 | _T("service_id integer not null,") | |
3303 | _T("check_id integer not null,") | |
3304 | _T("create_timestamp integer not null,") | |
3305 | _T("close_timestamp integer not null,") | |
3306 | _T("reason varchar(255) null,") | |
3307 | _T("PRIMARY KEY(ticket_id))"))); | |
3308 | ||
3309 | CHK_EXEC(CreateTable(_T("CREATE TABLE slm_service_history (") | |
3310 | _T("record_id integer not null,") | |
3311 | _T("service_id integer not null,") | |
3312 | _T("change_timestamp integer not null,") | |
3313 | _T("new_status integer not null,") | |
3314 | _T("PRIMARY KEY(record_id))"))); | |
3315 | ||
3316 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='238' WHERE var_name='SchemaVersion'"))); | |
3317 | return TRUE; | |
3318 | } | |
3319 | ||
3320 | ||
f5c9fdc5 VK |
3321 | // |
3322 | // Upgrade from V236 to V237 | |
3323 | // | |
3324 | ||
3325 | static BOOL H_UpgradeFromV236(int currVersion, int newVersion) | |
3326 | { | |
6f33021d | 3327 | static TCHAR batch[] = |
f5c9fdc5 VK |
3328 | _T("ALTER TABLE business_services DROP COLUMN name\n") |
3329 | _T("ALTER TABLE business_services DROP COLUMN parent_id\n") | |
3330 | _T("ALTER TABLE business_services DROP COLUMN status\n") | |
3331 | _T("ALTER TABLE slm_checks DROP COLUMN name\n") | |
3332 | _T("<END>"); | |
3333 | ||
3334 | CHK_EXEC(SQLBatch(batch)); | |
3335 | ||
3336 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='237' WHERE var_name='SchemaVersion'"))); | |
3337 | return TRUE; | |
3338 | } | |
3339 | ||
3340 | ||
5418326b AK |
3341 | // |
3342 | // Upgrade from V235 to V236 | |
3343 | // | |
3344 | ||
3345 | static BOOL H_UpgradeFromV235(int currVersion, int newVersion) | |
3346 | { | |
3347 | CHK_EXEC(CreateTable(_T("CREATE TABLE report_results (") | |
3348 | _T("report_id integer not null,") | |
3349 | _T("generated integer not null,") | |
3350 | _T("job_id integer not null,") | |
3351 | _T("PRIMARY KEY(report_id,job_id))"))); | |
3352 | ||
3353 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='236' WHERE var_name='SchemaVersion'"))); | |
3354 | return TRUE; | |
3355 | } | |
3356 | ||
3357 | ||
845b8121 VK |
3358 | // |
3359 | // Upgrade from V234 to V235 | |
3360 | // | |
3361 | ||
3362 | static BOOL H_UpgradeFromV234(int currVersion, int newVersion) | |
3363 | { | |
3364 | CHK_EXEC(CreateTable(_T("CREATE TABLE reports (") | |
3365 | _T("id integer not null,") | |
3366 | _T("definition $SQL:TEXT null,") | |
3367 | _T("PRIMARY KEY(id))"))); | |
3368 | ||
845b8121 VK |
3369 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='235' WHERE var_name='SchemaVersion'"))); |
3370 | return TRUE; | |
3371 | } | |
3372 | ||
3373 | ||
878b4261 VK |
3374 | // |
3375 | // Upgrade from V233 to V234 | |
3376 | // | |
3377 | ||
3378 | static BOOL H_UpgradeFromV233(int currVersion, int newVersion) | |
3379 | { | |
3380 | CHK_EXEC(CreateTable(_T("CREATE TABLE job_history (") | |
3381 | _T("id integer not null,") | |
3382 | _T("time_created integer not null,") | |
3383 | _T("time_started integer not null,") | |
3384 | _T("time_finished integer not null,") | |
3385 | _T("job_type varchar(127) null,") | |
3386 | _T("description varchar(255) null,") | |
24dc5346 | 3387 | _T("additional_info varchar(255) null,") |
878b4261 VK |
3388 | _T("node_id integer not null,") |
3389 | _T("user_id integer not null,") | |
3390 | _T("status integer not null,") | |
3391 | _T("failure_message varchar(255) null,") | |
3392 | _T("PRIMARY KEY(id))"))); | |
3393 | ||
3394 | CHK_EXEC(CreateConfigParam(_T("JobHistoryRetentionTime"), _T("90"), 1, 0)); | |
3395 | ||
3396 | CHK_EXEC(SQLQuery(_T("UPDATE event_cfg SET description=") | |
3397 | _T("'Generated when threshold check is rearmed for specific data collection item.#0D#0A") | |
3398 | _T("Parameters:#0D#0A") | |
3399 | _T(" 1) Parameter name#0D#0A") | |
3400 | _T(" 2) Item description#0D#0A") | |
3401 | _T(" 3) Data collection item ID#0D#0A") | |
3402 | _T(" 4) Instance#0D#0A") | |
3403 | _T(" 5) Threshold value#0D#0A") | |
3404 | _T(" 6) Actual value' WHERE event_code=18"))); | |
3405 | ||
3406 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='234' WHERE var_name='SchemaVersion'"))); | |
3407 | return TRUE; | |
3408 | } | |
3409 | ||
3410 | ||
128681c8 VK |
3411 | // |
3412 | // Upgrade from V232 to V233 | |
3413 | // | |
3414 | ||
3415 | static BOOL H_UpgradeFromV232(int currVersion, int newVersion) | |
3416 | { | |
3417 | CHK_EXEC(CreateTable(_T("CREATE TABLE business_services (") | |
3418 | _T("service_id integer not null,") | |
3419 | _T("name varchar(63) not null,") | |
2498594e VK |
3420 | _T("parent_id integer not null,") |
3421 | _T("status integer not null,") | |
128681c8 VK |
3422 | _T("PRIMARY KEY(service_id))"))); |
3423 | ||
128681c8 VK |
3424 | CHK_EXEC(CreateTable(_T("CREATE TABLE business_service_templates (") |
3425 | _T("service_id integer not null,") | |
3426 | _T("template_id integer not null,") | |
3427 | _T("PRIMARY KEY(service_id,template_id))"))); | |
3428 | ||
3429 | CHK_EXEC(CreateTable(_T("CREATE TABLE slm_checks (") | |
3430 | _T("check_id integer not null,") | |
3431 | _T("name varchar(63) not null,") | |
2498594e | 3432 | _T("type integer not null,") |
128681c8 | 3433 | _T("content $SQL:TEXT,") |
2498594e | 3434 | _T("threshold_id integer not null,") |
128681c8 VK |
3435 | _T("state integer not null,") |
3436 | _T("reason varchar(255) not null,") | |
3437 | _T("PRIMARY KEY(check_id))"))); | |
3438 | ||
3439 | CHK_EXEC(CreateTable(_T("CREATE TABLE slm_check_templates (") | |
3440 | _T("id integer not null,") | |
3441 | _T("name varchar(63) not null,") | |
2498594e | 3442 | _T("type integer not null,") |
128681c8 | 3443 | _T("content $SQL:TEXT,") |
2498594e | 3444 | _T("threshold_id integer not null,") |
128681c8 VK |
3445 | _T("PRIMARY KEY(id))"))); |
3446 | ||
3447 | CHK_EXEC(CreateTable(_T("CREATE TABLE node_links (") | |
3448 | _T("nodelink_id integer not null,") | |
3449 | _T("node_id integer not null,") | |
3450 | _T("PRIMARY KEY(nodelink_id))"))); | |
3451 | ||
3452 | CHK_EXEC(CreateTable(_T("CREATE TABLE node_link_checks (") | |
3453 | _T("nodelink_id integer not null,") | |
3454 | _T("check_id integer not null,") | |
3455 | _T("PRIMARY KEY(nodelink_id,check_id))"))); | |
3456 | ||
3457 | CHK_EXEC(CreateTable(_T("CREATE TABLE slm_agreements (") | |
3458 | _T("agreement_id integer not null,") | |
3459 | _T("service_id integer not null,") | |
3460 | _T("org_id integer not null,") | |
3461 | _T("uptime varchar(63) not null,") | |
3462 | _T("period integer not null,") | |
3463 | _T("start_date integer not null,") | |
3464 | _T("notes varchar(255),") | |
3465 | _T("PRIMARY KEY(agreement_id))"))); | |
3466 | ||
3467 | CHK_EXEC(CreateTable(_T("CREATE TABLE slm_tickets (") | |
3468 | _T("ticket_id integer not null,") | |
3469 | _T("service_id integer not null,") | |
3470 | _T("create_timestamp integer not null,") | |
3471 | _T("close_timestamp integer not null,") | |
3472 | _T("reason varchar(255) not null,") | |
3473 | _T("PRIMARY KEY(ticket_id))"))); | |
3474 | ||
3475 | CHK_EXEC(CreateTable(_T("CREATE TABLE organizations (") | |
3476 | _T("id integer not null,") | |
3477 | _T("parent_id integer not null,") | |
3478 | _T("org_type integer not null,") | |
3479 | _T("name varchar(63) not null,") | |
3480 | _T("description varchar(255),") | |
3481 | _T("manager integer not null,") | |
3482 | _T("PRIMARY KEY(id))"))); | |
3483 | ||
3484 | CHK_EXEC(CreateTable(_T("CREATE TABLE persons (") | |
3485 | _T("id integer not null,") | |
3486 | _T("org_id integer not null,") | |
3487 | _T("first_name varchar(63),") | |
3488 | _T("last_name varchar(63),") | |
3489 | _T("title varchar(255),") | |
3490 | _T("status integer not null,") | |
3491 | _T("PRIMARY KEY(id))"))); | |
3492 | ||
3493 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='233' WHERE var_name='SchemaVersion'"))); | |
3494 | return TRUE; | |
3495 |