-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.sample.json
More file actions
51 lines (51 loc) · 1.17 KB
/
config.sample.json
File metadata and controls
51 lines (51 loc) · 1.17 KB
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
{
"General": {
"GlobalTimeout": 7200,
"RecreateStagingTable": false,
"ForceFullSync": false,
"RecreateStoredProcedure": false,
"NumberOfThreads": 4,
"RunSanityCheck": true,
"MaxRetries": 3,
"RetryDelaySeconds": 10,
"DeleteLogOlderThanDays": 30,
"CleanupOrphans": false,
"OrphanCleanupBatchSize": 50000,
"IdColumn": "ID",
"TimestampColumns": ["GESPEICHERT", "MODIFIED_DATE", "LAST_UPDATE", "CHANGED_AT"]
},
"Firebird": {
"Server": "DEIN_SERVER_NAME",
"Password": "DEIN_PASSWORT",
"Database": "C:\\Pfad\\Zu\\Deiner\\Datenbank.FDB",
"Port": 3050,
"Charset": "UTF8",
"DllPath": "C:\\Pfad\\Zur\\FirebirdSql.Data.FirebirdClient.dll"
},
"MSSQL": {
"Server": "SVRSQL03",
"Integrated Security": true,
"Username": "satest",
"Password": "123456",
"Database": "STAGING",
"Prefix": "FB_",
"Suffix": "",
"Port": 1433
},
"Tables": [
"BLIEF",
"BKUNDE",
"BSA",
"LEGACY_ORDERS",
"AUDIT_LOG"
],
"TableOverrides": {
"LEGACY_ORDERS": {
"IdColumn": "ORDER_ID",
"TimestampColumn": "CHANGED_AT"
},
"AUDIT_LOG": {
"IdColumn": "LOG_ID"
}
}
}