-
Notifications
You must be signed in to change notification settings - Fork 0
/
Miradi Database Upgrade Script 2012-02-18.sql
458 lines (393 loc) · 20.7 KB
/
Miradi Database Upgrade Script 2012-02-18.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
/* Miradi Database Upgrade 2012-02-18
- Add view v_ThreatIndicator.
- Redesign MiradiTables.
- Add MiradiColumns.
- Add function fn_StripTags().
- Change letter case on ENUM values to match XML Schema Vocabulary.
- Add FiscalYear to DateUnitWorkUnits, DateUnitExpense and their views.
- Revise views that associate Work/Expense Plan Factors with Years.
- Add function fn_ExpenseName().
*/
USE Miradi;
DROP VIEW IF EXISTS v_ThreatIndicator;
CREATE VIEW v_ThreatIndicator AS
SELECT ProjectSummaryID, CauseID AS ThreatID, CauseXID AS ThreatXID,
IndicatorID, IndicatorXID
FROM CauseIndicator;
/* fn_StripTags.sql
Strip formatting tags from a text string.
Based on http://www.artfulsoftware.com/infotree/queries.php#567.
*/
DELIMITER $$
DROP FUNCTION IF EXISTS fn_StripTags $$
CREATE FUNCTION fn_StripTags (TextString TEXT) RETURNS TEXT
DETERMINISTIC
BEGIN
DECLARE fStart, fEnd, fLENGTH INTEGER;
SET fStart = LOCATE( "<", TextString );
IF fStart > 0 THEN
SET fEnd = LOCATE( ">", TextString, fStart);
SET fLength = fEnd - fStart + 1;
ELSE SET fEnd = 0, fLength = 0;
END IF;
WHILE fLength > 0 DO
SET TextString = Insert( TextString, fStart, fLength, "");
SET fStart = LOCATE( "<", TextString );
IF fStart > 0 THEN
SET fEnd = LOCATE( ">", TextString, fStart);
SET fLength = fEnd - fStart + 1;
ELSE SET fEnd = 0, fLength = 0;
END IF;
END WHILE;
RETURN TextString;
END $$
DELIMITER ;
ALTER TABLE ProjectSummary
MODIFY COLUMN WorkPlanTimeUnit ENUM("QUARTERLY","YEARLY");
ALTER TABLE ProtectedAreaCategories CHANGE Code code ENUM("Ia","Ib","II","III","IV","V","VI");
ALTER TABLE ProjectCountries CHANGE Code code CHAR(3);
ALTER TABLE GeospatialLocation
CHANGE Latitude latitude DECIMAL(6,4),
CHANGE Longitude longitude DECIMAL(7,4);
ALTER TABLE DateUnitWorkUnits
ADD COLUMN FiscalYear SMALLINT AFTER EndDate;
ALTER TABLE DateUnitExpense
ADD COLUMN FiscalYear SMALLINT AFTER EndDate;
UPDATE DateUnitWorkUnits, ProjectPlanning Plan
SET StartYear =
CASE WHEN WorkUnitsDateUnit IN ("Month","Quarter","Year")
THEN SUBSTRING_INDEX(SUBSTRING_INDEX(WorkUnitsDate,"\"",2),"\"",-1)
WHEN WorkUnitsDateUnit = "Day"
THEN SUBSTRING_INDEX(SUBSTRING_INDEX(WorkUnitsDate,"-",1),"\"",-1)
WHEN WorkUnitsDateUnit LIKE "Full%"
THEN YEAR(CASE WHEN Plan.WorkPlanStartDate IS NOT NULL
THEN Plan.WorkPlanStartDate
WHEN Plan.StartDate IS NOT NULL
THEN Plan.StartDate
ELSE CURRENT_DATE()
END
)
END,
StartMonth =
CASE WHEN WorkUnitsDateUnit IN ("Month","Quarter","Year")
THEN SUBSTRING_INDEX(SUBSTRING_INDEX(WorkUnitsDate,"\"",4),"\"",-1)
WHEN WorkUnitsDateUnit = "Day"
THEN SUBSTRING_INDEX(SUBSTRING_INDEX(WorkUnitsDate,"-",2),"-",-1)
WHEN WorkUnitsDateUnit LIKE "Full%"
THEN MONTH(CASE WHEN Plan.WorkPlanStartDate IS NOT NULL
THEN Plan.WorkPlanStartDate
WHEN Plan.StartDate IS NOT NULL
THEN Plan.StartDate
ELSE CURRENT_DATE()
END
)
END
WHERE Plan.ProjectSummaryID = DateUnitWorkUnits.ProjectSummaryID;
UPDATE DateUnitWorkUnits, ProjectPlanning Plan
SET DateUnitWorkUnits.StartDate =
CASE WHEN WorkUnitsDateUnit = "Day" THEN
DATE(SUBSTRING_INDEX(
SUBSTRING_INDEX(WorkUnitsDate,
'"',2
),'"',-1
)
)
WHEN WorkUnitsDateUnit IN ("Month","Quarter","Year") THEN
DATE(CONCAT(StartYear,"-",StartMonth,"-01"))
WHEN WorkUnitsDateUnit LIKE "%Full%" THEN
CASE WHEN Plan.WorkPlanStartDate IS NOT NULL
THEN Plan.WorkPlanStartDate
WHEN Plan.StartDate IS NOT NULL
THEN Plan.StartDate
ELSE CURRENT_DATE()
END
END,
DateUnitWorkUnits.EndDate =
CASE WorkUnitsDateUnit
WHEN "Day" THEN
DATE(SUBSTRING_INDEX(
SUBSTRING_INDEX(WorkUnitsDate,
'"',2
),'"',-1
)
)
WHEN "Month" THEN
SUBDATE(ADDDATE(DATE(CONCAT(StartYear,"-",
StartMonth,
"-01"
)
),INTERVAL 1 MONTH
),INTERVAL 1 DAY
)
WHEN "Quarter" THEN
SUBDATE(ADDDATE(DATE(CONCAT(StartYear,"-",
StartMonth,
"-01"
)
),INTERVAL 3 MONTH
),INTERVAL 1 DAY
)
WHEN "Year" THEN
SUBDATE(ADDDATE(DATE(CONCAT(StartYear,"-",
StartMonth,
"-01"
)
),INTERVAL 1 YEAR
),INTERVAL 1 DAY
)
WHEN "FullProjectTimespan" THEN
CASE WHEN Plan.WorkPlanEndDate IS NOT NULL
THEN Plan.WorkPlanEndDate
WHEN Plan.ExpectedEndDate IS NOT NULL
THEN Plan.ExpectedEndDate
ELSE CURRENT_DATE()
END
END
WHERE Plan.ProjectSummaryID = DateUnitWorkUnits.ProjectSummaryID;
UPDATE DateUnitWorkUnits Units, ProjectPlanning Plan
SET FiscalYear = YEAR(CASE WHEN FiscalYearStart IS NULL
THEN EndDate
ELSE ADDDATE(EndDate,INTERVAL 12-FiscalYearStart+1 MONTH)
END
)
WHERE Plan.ProjectSummaryID = Units.ProjectSummaryID;
UPDATE DateUnitExpense, ProjectPlanning Plan
SET StartYear =
CASE WHEN ExpensesDateUnit IN ("Month","Quarter","Year")
THEN SUBSTRING_INDEX(SUBSTRING_INDEX(ExpensesDate,"\"",2),"\"",-1)
WHEN ExpensesDateUnit = "Day"
THEN SUBSTRING_INDEX(SUBSTRING_INDEX(ExpensesDate,"-",1),"\"",-1)
WHEN ExpensesDateUnit LIKE "Full%"
THEN YEAR(CASE WHEN Plan.WorkPlanStartDate IS NOT NULL
THEN Plan.WorkPlanStartDate
WHEN Plan.StartDate IS NOT NULL
THEN Plan.StartDate
ELSE CURRENT_DATE()
END
)
END,
StartMonth =
CASE WHEN ExpensesDateUnit IN ("Month","Quarter","Year")
THEN SUBSTRING_INDEX(SUBSTRING_INDEX(ExpensesDate,"\"",4),"\"",-1)
WHEN ExpensesDateUnit = "Day"
THEN SUBSTRING_INDEX(SUBSTRING_INDEX(ExpensesDate,"-",2),"-",-1)
WHEN ExpensesDateUnit LIKE "Full%"
THEN MONTH(CASE WHEN Plan.WorkPlanStartDate IS NOT NULL
THEN Plan.WorkPlanStartDate
WHEN Plan.StartDate IS NOT NULL
THEN Plan.StartDate
ELSE CURRENT_DATE()
END
)
END
WHERE Plan.ProjectSummaryID = DateUnitExpense.ProjectSummaryID;
UPDATE DateUnitExpense, ProjectPlanning Plan
SET DateUnitExpense.StartDate =
CASE WHEN ExpensesDateUnit = "Day" THEN
DATE(SUBSTRING_INDEX(
SUBSTRING_INDEX(ExpensesDate,
'"',2
),'"',-1
)
)
WHEN ExpensesDateUnit IN ("Month","Quarter","Year") THEN
DATE(CONCAT(StartYear,"-",StartMonth,"-01"))
WHEN ExpensesDateUnit LIKE "%Full%" THEN
CASE WHEN Plan.WorkPlanStartDate IS NOT NULL
THEN Plan.WorkPlanStartDate
WHEN Plan.StartDate IS NOT NULL
THEN Plan.StartDate
ELSE CURRENT_DATE()
END
END,
DateUnitExpense.EndDate =
CASE ExpensesDateUnit
WHEN "Day" THEN
DATE(SUBSTRING_INDEX(
SUBSTRING_INDEX(ExpensesDate,
'"',2
),'"',-1
)
)
WHEN "Month" THEN
SUBDATE(ADDDATE(DATE(CONCAT(StartYear,"-",
StartMonth,
"-01"
)
),INTERVAL 1 MONTH
),INTERVAL 1 DAY
)
WHEN "Quarter" THEN
SUBDATE(ADDDATE(DATE(CONCAT(StartYear,"-",
StartMonth,
"-01"
)
),INTERVAL 3 MONTH
),INTERVAL 1 DAY
)
WHEN "Year" THEN
SUBDATE(ADDDATE(DATE(CONCAT(StartYear,"-",
StartMonth,
"-01"
)
),INTERVAL 1 YEAR
),INTERVAL 1 DAY
)
WHEN "FullProjectTimespan" THEN
CASE WHEN Plan.WorkPlanEndDate IS NOT NULL
THEN Plan.WorkPlanEndDate
WHEN Plan.ExpectedEndDate IS NOT NULL
THEN Plan.ExpectedEndDate
ELSE CURRENT_DATE()
END
END
WHERE Plan.ProjectSummaryID = DateUnitExpense.ProjectSummaryID;
UPDATE DateUnitExpense Exp, ProjectPlanning Plan
SET FiscalYear = YEAR(CASE WHEN FiscalYearStart IS NULL
THEN EndDate
ELSE ADDDATE(EndDate,INTERVAL 12-FiscalYearStart+1 MONTH)
END
)
WHERE Plan.ProjectSummaryID = Exp.ProjectSummaryID;
DROP VIEW IF EXISTS v_WorkYears; /* A view to select all the Fiscal Years for which there
exists a work plan (or expense) component. Note that
this view includes Factors within each year for which
such a component exits. These may be summarized out
into a temp table when factor detail is not required.
*/
CREATE VIEW v_PlanYears AS
SELECT Calc.ProjectSummaryID, Calc.Factor, Calc.FactorID,
FiscalYear AS PlanYear
FROM CalculatedWorkUnits Calc, DateUnitWorkUnits Work
WHERE Work.Factor LIKE "%CalculatedWorkUnits"
AND Work.FactorID = Calc.ID
UNION
SELECT Calc.ProjectSummaryID, Calc.Factor, Calc.FactorID,
FiscalYear AS PlanYear
FROM CalculatedExpense Calc, DateUnitExpense Exp
WHERE Exp.Factor LIKE "%CalculatedExpense"
AND Exp.FactorID = Calc.ID;
DROP VIEW IF EXISTS v_WorkRsrcs; /* A view to select all the Fiscal Years and their
associated work plan resources, including the
absence of an assigned resource (ProjectResourceID = 0).
Note that this view includes Resources within each year
for which such a resource exits. These may be summarized
out into a temp table when Resource detail is not required.
*/
CREATE VIEW v_RsrcYears AS
SELECT Calc.ProjectSummaryID, Calc.Factor, Calc.FactorID,
CASE WHEN ProjectResourceID IS NULL THEN 0
ELSE ProjectResourceID
END AS ProjectResourceID,
FiscalYear AS RsrcYear
FROM CalculatedWorkUnits Calc, DateUnitWorkUnits Work
WHERE Work.Factor LIKE "%CalculatedWorkUnits"
AND Work.FactorID = Calc.ID;
DROP VIEW IF EXISTS v_WorkAccts; /* A view to select all the Fiscal Years for and their
associated work plan/expense accounts, including the
absence of an assigned account. (AccountingCodeID = 0).
Note that this view includes Accounts within each year
for which such an account exits. These may be summarized
out into a temp table when Account detail is not required.
*/
CREATE VIEW v_AcctYears AS
SELECT Calc.ProjectSummaryID, Calc.Factor, Calc.FactorID,
CASE WHEN AccountingCodeID IS NULL THEN 0
ELSE AccountingCodeID
END AS AccountingCodeID,
FiscalYear AS AcctYear
FROM CalculatedWorkUnits Calc, DateUnitWorkUnits Work
WHERE Work.Factor LIKE "%CalculatedWorkUnits"
AND Work.FactorID = Calc.ID
UNION
SELECT Calc.ProjectSummaryID, Calc.Factor, Calc.FactorID,
CASE WHEN AccountingCodeID IS NULL THEN 0
ELSE AccountingCodeID
END AS AccountingCodeID,
FiscalYear AS AcctYear
FROM CalculatedExpense Calc, DateUnitExpense Exp
WHERE Exp.Factor LIKE "%CalculatedExpense"
AND Exp.FactorID = Calc.ID;
DROP VIEW IF EXISTS v_WorkFunds; /* A view to select all the Fiscal Years for and their
associated work plan/expense funds, including the
absence of an assigned fund. (FundingSourceID = 0).
Note that this view includes Funds within each year
for which such an account exits. These may be summarized
out into a temp table when Fund detail is not required.
*/
CREATE VIEW v_FundYears AS
SELECT Calc.ProjectSummaryID, Calc.Factor, Calc.FactorID,
CASE WHEN FundingSourceID IS NULL THEN 0
ELSE FundingSourceID
END AS FundingSourceID,
FiscalYear AS FundYear
FROM CalculatedWorkUnits Calc, DateUnitWorkUnits Work
WHERE Work.Factor LIKE "%CalculatedWorkUnits"
AND Work.FactorID = Calc.ID
UNION
SELECT Calc.ProjectSummaryID, Calc.Factor, Calc.FactorID,
CASE WHEN FundingSourceID IS NULL THEN 0
ELSE FundingSourceID
END AS FundingSourceID,
FiscalYear AS FundYear
FROM CalculatedExpense Calc, DateUnitExpense Exp
WHERE Exp.Factor LIKE "%CalculatedExpense"
AND Exp.FactorID = Calc.ID;
/*
fn_ExpenseName _v3.sql
Function to list all Expense Assignment Names that are associated with a
common set of Dimensions (whose IDs are parameters to the function) for
a particular Factor (e.g. Strategy or Activity).
Designed specifically to support sp_AccountPlan, that reports an
expense/budget plan by Factor within Account.
Revision History:
Version 03 - 2012-03-01 - Abandon new view and use exclusive left joins instead. The view
created the risk of Server Error 1267 - Invalid mix of collations.
Version 02 - 2012-02-29 - Use new view FactorExpense which UNIONs all Factor Expesne Associations.
- Limit total length of each Expense Name to 255.
- Change delimiter between expense names to ';'.
Version 01 - 2012-02-28 - Initial Version.
*/
DROP FUNCTION IF EXISTS fn_ExpenseName;
DELIMITER $$
CREATE FUNCTION fn_ExpenseName (fFactor VARCHAR(25), fFactorID INTEGER,
fAccountingCodeID INTEGER, fFundingSourceID INTEGER,
fBudgetCategoryOneID INTEGER, fBudgetCategoryTwoID INTEGER
) RETURNS TEXT
BEGIN
DECLARE fExpenseName VARCHAR(255) DEFAULT "";
DECLARE fExpenseNames TEXT DEFAULT "";
DECLARE EOF BOOLEAN DEFAULT FALSE;
DECLARE c_Exp CURSOR FOR
SELECT LEFT(Exp.Name,255)
FROM ExpenseAssignment Exp
LEFT JOIN StrategyExpense StrExp
ON StrExp.ExpenseAssignmentID = Exp.ID
AND StrExp.StrategyID = fFactorID
AND fFactor = "Strategy"
LEFT JOIN TaskActivityMethodExpense ActExp
ON ActExp.ExpenseAssignmentID = Exp.ID
AND ActExp.TaskActivityMethodID = fFactorID
AND fFactor IN ("Task","Activity","Method")
LEFT JOIN IndicatorExpense IndExp
ON IndExp.ExpenseAssignmentID = Exp.ID
AND IndExp.IndicatorID = fFactorID
AND fFactor = "Indicator"
WHERE Exp.AccountingCodeID <=> fAccountingCodeId
AND Exp.FundingSourceID <=> fFundingSourceId
AND Exp.BudgetCategoryOneID <=> fBudgetCategoryOneId
AND Exp.BudgetCategoryTwoID <=> fBudgetCategoryTwoId
AND CASE WHEN fFactor = "Strategy" THEN StrategyID
WHEN fFactor IN ("Task","Activity","Method") THEN TaskActivityMethodID
WHEN fFactor = "Indicator" THEN IndicatorID
END = fFactorID;
DECLARE CONTINUE HANDLER FOR NOT FOUND SET EOF = TRUE;
OPEN c_Exp;
WHILE TRUE DO
FETCH c_Exp INTO fExpenseName;
IF EOF THEN RETURN TRIM(TRAILING "; " FROM fExpenseNames); END IF;
SET fExpenseNames = CONCAT(fExpenseNames,fExpenseName,"; ");
END WHILE;
END $$
DELIMITER ;
-- END