Create a Differential backup using SQLPS

107 Views Asked by At

I have created a FULL database backup using the following:

Backup-SQLDatabase -ServerInstance $sqlServer -Database $db.name -BackupFile $fullBackupFilePath -BackupAction Database

I cannot find anywhere specifying the correct -BackupAction for a Differential Backup

1

There are 1 best solutions below

0
Mike Shepard On BEST ANSWER

This page mentions that in SQL 2012 and above there is an -Incremental switch for doing differential backups.