Last active
August 30, 2019 10:43
-
-
Save akunzai/e4d6b9dd1577ccd34f7aca6e3e344df1 to your computer and use it in GitHub Desktop.
SQLite Backup Rotation Script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# usage: powershell -ExecutionPolicy Bypass -file .\sqlite_backup.ps1 -dbFile .\tobackup.db3 -backupDir .\backup | |
# please make sure sqlite3.exe can be found in $PATH or specify it by -sqliteExe parameter | |
Param( | |
# https://chocolatey.org/packages/sqlite.shell | |
[string]$sqliteExe = "sqlite3.exe", | |
[Parameter(Mandatory = $true)] | |
[string]$dbFile, | |
# default same as dbFile's directory | |
[string]$backupDir = "", | |
# [default|fullday|fulltime] | |
[string]$rotateType = "default" | |
) | |
if (![System.IO.File]::Exists($dbFile)){ | |
Write-Warning "dbFile not found!"; | |
Exit 1; | |
} | |
if (![string]::IsNullOrEmpty($backupDir) -and ![System.IO.Directory]::Exists($backupDir)){ | |
[System.IO.Directory]::CreateDirectory($backupDir); | |
} | |
switch ($rotateType){ | |
fullday { | |
$rotation = Get-Date -format 'yyyy-MM-dd'; | |
break; | |
} | |
fulltime { | |
$rotation = Get-Date -format 'yyyyMMddHHmm'; | |
break; | |
} | |
default { | |
$rotation = Get-Date -format 'dd'; | |
break; | |
} | |
} | |
$backupFileName = [System.IO.Path]::GetFileNameWithoutExtension($dbFile) + "." + $rotation + [System.IO.Path]::GetExtension($dbFile); | |
$backupFilePath = [System.IO.Path]::Combine($backupDir, $backupFileName ).Replace('\','/'); | |
Write-Host "Using SQLite Shell: [$sqliteExe] Backing up DB [$dbFile] => [$backupFilePath] ... " -NoNewline; | |
$proc = Start-Process -FilePath $sqliteExe ` | |
-ArgumentList $dbFile, """.backup $backupFilePath""" ` | |
-WorkingDirectory ([System.IO.Path]::GetDirectoryName($dbFile)) ` | |
-NoNewWindow ` | |
-Wait ` | |
-PassThru | |
if ($proc.ExitCode -ne 0){ | |
Exit $proc.ExitCode; | |
} else { | |
Write-Host "Done"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment