Initial commit
This commit is contained in:
parent
05e4e1894a
commit
09ad9fe725
1 changed files with 11 additions and 0 deletions
11
SQL-Instance-Backup.ps1
Normal file
11
SQL-Instance-Backup.ps1
Normal file
|
@ -0,0 +1,11 @@
|
|||
# Sql Instance Backup
|
||||
|
||||
$BackupRootPath = "E:\Backup"
|
||||
$SqlServerInstance = "SQL-SERVER\INSTANCE"
|
||||
|
||||
$Dbs = Invoke-Sqlcmd -ServerInstance $SqlServerInstance -Query "SELECT name,database_id FROM sys.databases" -TrustServerCertificate
|
||||
foreach ($Db in $Dbs) {
|
||||
$BackupQuery = "BACKUP DATABASE [$($Db.name)] to DISK = '$BackupRootPath\$($Db.name).bak'"
|
||||
Invoke-Sqlcmd -ServerInstance $SqlServerInstance -Query $BackupQuery -TrustServerCertificate
|
||||
}
|
||||
|
Loading…
Add table
Reference in a new issue