0

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

Ryan Gillooly
  • 315
  • 1
  • 5
  • 20

1 Answers1

0

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

Mike Shepard
  • 17,466
  • 6
  • 51
  • 69