-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.config
More file actions
23 lines (18 loc) · 720 Bytes
/
App.config
File metadata and controls
23 lines (18 loc) · 720 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<add key="SQLServer" value="localhost\SQL2012" />
<add key="SQLUser" value="user" />
<add key="SQLPassword" value="pwd" />
<add key="DBList" value="dog,test"/>
<add key="DelDays" value="45" />
<add key="KeepOnly" value="23_0" />
<add key="BackupDir" value="D:\\DBBackupTemp\\" />
<add key="NetworkBackup" value="true" />
<add key="NetworkDir" value="////Someserver//BackupDB//" />
<add key="ExecSQLBefore" value="exec stp_CleanDB" />
<add key="ExecSQLAfter" value="exec stp_ArchiveAll" />
<add key="ExecSQLDBName" value="DBTest" />
<add key="ArchivePassword" value="somepassword"/>
</appSettings>
</configuration>