Skip to content

Latest commit

 

History

History
69 lines (61 loc) · 3.58 KB

README.md

File metadata and controls

69 lines (61 loc) · 3.58 KB

Features

  1. Automatic DB Backup Job
  2. Automatically create a zip copy of backup file
  3. Automatically push the zip backup file to Azure Storage
  4. Automatically push the zip backup file to AWS S3 Bucket
  5. Automatic Index Maintenance
  6. Shrik database to 10% and rebuild index after shrink

How to user it

  • Register as windows task scheduler

Getting Start

  • Clone this repository
  • Open the solution in Visual Studio (2019 recommended).
  • Open DatabaseJobs.Client/App.config file.
  • Check the following appSettings key value and change as your need
 <add key="ServerName" value=".\SQLEXPRESS" />    <!--database server name-->
 <add key="EnableShrink" value="true" /> <!--enable index reorganize before taking backup, rebild index after shrink-->
 <add key="EnableIndexMaintenance" value="true"/> <!--enable index reorganize before taking backup, rebild index after shrink-->
 <add key="BackupAllDatabases" value="true" />   <!--backup all database of the provided server except system databases-->
 <add key="BackupDatabases" value="AuditorDb,UrlShortenDb" />    <!--existing database names of the provided server-->
 <add key="UseRootBackupDirectory" value="false" />    <!--backup will be stored on the application hosted base directory-->
 <add key="BackupDirectoryPath" value="C:\temp\backups\" />   <!--define a specific backup location. it will activate when UseRootBackupDirectory is false-->
 <add key="RemoveBackupAfterXDays" value="5" />   <!--remove older backup after n days, empty for disable this rule--> 
 <add key="RemoveBakFileAfterZip" value="true" /> <!--remove .bak file after zip completion-->
 <add key="PushToAzureStorage" value="true" />   <!--true for push the backup zip file to your azure storage blob--> 
 <!--aws s3 bucket config-->
 <add key="PushToAwsS3Bucket" value="false"/>
 <add key="AwsAccessKey" value="*your aws access key*"/>
 <add key="AwsSecretKey" value="*your aws secret key*"/>
 <add key="S3BucketName" value="*your bucket name*"/>
 <add key="S3BucketRegion" value="ap-southeast-1"/>
  • Configur your azure storage connection string (only if you make PushToAzureStorage is true) <add name="AzureStroage" connectionString="DefaultEndpointsProtocol=https;AccountName=yourAzureStorageAccountName;AccountKey=yourAzureStroageAccountKey;EndpointSuffix=core.windows.net" />
  • All are set now. Build and run the program.
  • Publish the client project and up it on your virtual machine and register as a windows task scheduler

Rebuild Index

Rebuild all index of a database in SQL Server
Command: Exec sp_msforeachtable 'SET QUOTED_IDENTIFIER ON; ALTER INDEX ALL ON ? REBUILD'

Reorganize Index

Reorganize all index of a database in SQL Server
Command: Exec sp_msforeachtable 'SET QUOTED_IDENTIFIER ON; ALTER INDEX ALL ON ? REBUILD'

Delete Old IIS Logs by Script

sLogFolder = "c:\inetpub\logs\LogFiles"
iMaxAge = 30   'in days
Set objFSO = CreateObject("Scripting.FileSystemObject")
set colFolder = objFSO.GetFolder(sLogFolder)
For Each colSubfolder in colFolder.SubFolders
        Set objFolder = objFSO.GetFolder(colSubfolder.Path)
        Set colFiles = objFolder.Files
        For Each objFile in colFiles
                iFileAge = now-objFile.DateCreated
                if iFileAge > (iMaxAge+1)  then
                        objFSO.deletefile objFile, True
                end if
        Next
Next