-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.mssql.json
77 lines (77 loc) · 2.81 KB
/
config.mssql.json
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
{
"HostPort" : 8000,
"HMAC": "thisisanhmacsecretkey",
"DefaultDatabaseID": "DEFAULT",
"MailServer" : {
"Host": "192.168.1.20",
"Port" : 25,
"User" : "",
"Password" : "",
"SenderName": "AppsHub"
},
"Databases" : [
{
"ID" : "DEFAULT",
"Schema": "pub",
"ConnectionString" : "sqlserver://appshub:fantastic4@KASSGRAPHICS?database=APPSHUB&connection+timeout=0&encrypt=disable",
"DriverName" : "sqlserver",
"StorageType": "SERVER",
"GroupID": "PICKLISTDEST",
"SequenceGenerator" : {
"UpsertQuery" : "",
"ResultQuery" : "DECLARE @surrogatekey INT; EXEC dbo.spGetNextSurrogateKey '{SequenceName}', @surrogatekey OUTPUT; SELECT @surrogatekey;",
"NamePlaceHolder": "{SequenceName}"
},
"ParameterPlaceHolder": "@p",
"ParameterInSequence": true,
"ReservedWordEscapeChar":"[]"
},
{
"ID" : "LOCAL",
"ConnectionString" : "sqlserver://appshub:fantastic4@KASSGRAPHICS?database=APPSHUB&connection+timeout=0&encrypt=disable",
"DriverName" : "sqlserver",
"StorageType": "SERVER",
"GroupID": "",
"SequenceGenerator" : {
"UpsertQuery" : "",
"ResultQuery" : "DECLARE @surrogatekey INT; EXEC dbo.spGetNextSurrogateKey '{SequenceName}', @surrogatekey OUTPUT; SELECT @surrogatekey;",
"NamePlaceHolder": "{SequenceName}"
},
"ParameterPlaceHolder": "@p",
"ParameterInSequence": true
},
{
"ID" : "APPSLICDB",
"ConnectionString" : "sqlserver://sa:password101@KASSGRAPHICS?database=APPSLICDB&connection+timeout=0&encrypt=disable",
"DriverName" : "sqlserver",
"StorageType": "SERVER",
"GroupID": "",
"SequenceGenerator" : {
"UpsertQuery" : "",
"ResultQuery" : "DECLARE @surrogatekey INT; EXEC dbo.sshGetNextNumberOut '{SequenceName}', @surrogatekey OUTPUT; SELECT @surrogatekey;",
"NamePlaceHolder": "{SequenceName}"
},
"ParameterPlaceHolder": "@p",
"ParameterInSequence": true
}
],
"Domains": [
{
"Name":"VDIMDCI",
"Host":"192.168.1.24",
"Port" : 389,
"Path": "DC=VDIMDCI,DC=COM,DC=PH",
"AuthorizedUser": "kapitan",
"AuthorizedPassword": "D0m@1nAdm1n",
"Filter": "(objectClass=person)"
}
],
"NotifyRecipients": [
{
"ID":"test",
"FullName":"Test User",
"EmailAddress":"testuser@yahoo.com",
"MessengerName" : "test"
}
]
}