Afternoon all
Does anyone familiar with Get-SqlBackupHistory know how to retrieve msdb.dbo.backupset.name? I have a need to retrieve NetBackup events (Log, Incremental, Full) and have been unable to figure out how to extract.
Have tried:
$OutTable = Get-SqlBackupHistory -ServerInstance $instance -DatabaseName $DBName
Which does return NetBackup events, but when I try to filter
$OutTable = Get-SqlBackupHistory -ServerInstance $instance -DatabaseName $DBName | Select-Object DatabaseName, BackupSetType, BackupStartDate, BackupFinishDate
I only get my SQL native backups