-
- Expert
- Posts: 231
- Liked: 22 times
- Joined: Feb 26, 2019 12:08 pm
- Full Name: Gianluca Croci
- Contact:
Report Backup SAP HANA Plug-In
Hello,
We've just installed the SAP HANA Plug-In on a Linux server, and we'd like to receive a Report after the Backup or even once a day (for example in the morning).
this is the only thing I was able to do
We don't yet know how and when the backup will be performed, so I'd like to cover the last 24 H in the report.
Thanks in advance
We've just installed the SAP HANA Plug-In on a Linux server, and we'd like to receive a Report after the Backup or even once a day (for example in the morning).
this is the only thing I was able to do
We don't yet know how and when the backup will be performed, so I'd like to cover the last 24 H in the report.
Thanks in advance
-
- Veeam Software
- Posts: 2010
- Liked: 669 times
- Joined: Sep 25, 2019 10:32 am
- Full Name: Oleg Feoktistov
- Contact:
Re: Report Backup SAP HANA Plug-In
Hi Gianluca,
Can you, please, clarify if your goal is to obtain the list of SAP HANA plugin backups made for the last 24 hours or it's about sessions?
Thanks,
Oleg
Can you, please, clarify if your goal is to obtain the list of SAP HANA plugin backups made for the last 24 hours or it's about sessions?
Thanks,
Oleg
-
- Expert
- Posts: 231
- Liked: 22 times
- Joined: Feb 26, 2019 12:08 pm
- Full Name: Gianluca Croci
- Contact:
Re: Report Backup SAP HANA Plug-In
Hello Oleg,
yes, I think the best solution is to obtain a 24 H report, where I've all the backup done on the servers that use this plug-in.
Now we've just one environment, but soon we'll have the Test and the Prod too.
thanks
yes, I think the best solution is to obtain a 24 H report, where I've all the backup done on the servers that use this plug-in.
Now we've just one environment, but soon we'll have the Test and the Prod too.
thanks
-
- Veeam Software
- Posts: 2010
- Liked: 669 times
- Joined: Sep 25, 2019 10:32 am
- Full Name: Oleg Feoktistov
- Contact:
Re: Report Backup SAP HANA Plug-In
Hi Gianluca,
Please have a look at the example. Is it what you are looking for?
Thanks,
Oleg
Please have a look at the example. Is it what you are looking for?
Code: Select all
$date = (Get-Date).AddDays(-1)
$backup = Get-VBRBackup -Name 'Backup Job'
Get-VBRRestorePoint -Backup $backup | where {$_.CreationTime -gt $date}
Oleg
-
- Expert
- Posts: 231
- Liked: 22 times
- Joined: Feb 26, 2019 12:08 pm
- Full Name: Gianluca Croci
- Contact:
Re: Report Backup SAP HANA Plug-In
Hello Oleg,
thanks a lot.
I've an error
thanks a lot.
I've an error
Thanks againGet-VBRRestorePoint : Cannot get restore points from backup svhanad001 SAP backint backup (ME4084_CED1_B_SAPHANA), because it is encrypted or created by an enterprise application plug-in.
At line:3 char:1
+ Get-VBRRestorePoint -Backup $backup | where {$_.CreationTime -gt $dat ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidData: (:) [Get-VBRRestorePoint], Exception
+ FullyQualifiedErrorId : GetRestorePointErrorId,Veeam.Backup.PowerShell.Cmdlets.GetVBRRestorePoint
-
- Veeam Software
- Posts: 2010
- Liked: 669 times
- Joined: Sep 25, 2019 10:32 am
- Full Name: Oleg Feoktistov
- Contact:
Re: Report Backup SAP HANA Plug-In
Hello Gianluca,
Looks like there is no way to get the list of restore points for SAP HANA plugin backup with official cmdlets as there are no actions we could do with them further. The workaround would be to use unsupported method if it is just for reporting purposes:
Hope it helps,
Oleg
Looks like there is no way to get the list of restore points for SAP HANA plugin backup with official cmdlets as there are no actions we could do with them further. The workaround would be to use unsupported method if it is just for reporting purposes:
Code: Select all
$date = (Get-Date).AddDays(-1)
$oibs = $backup.GetOibs()
$oibs | where {$_.CreationTime -gt $date} | sort -Property CreationTime
Oleg
-
- Expert
- Posts: 231
- Liked: 22 times
- Joined: Feb 26, 2019 12:08 pm
- Full Name: Gianluca Croci
- Contact:
Re: Report Backup SAP HANA Plug-In
Hello Oleg,
thanks a lot.
now I've a list.
I'm trying to see if I can have more info about each row/backup.
Thanks again
have a good day.
Kind regards
thanks a lot.
now I've a list.
I'm trying to see if I can have more info about each row/backup.
Thanks again
have a good day.
Kind regards
Who is online
Users browsing this forum: No registered users and 21 guests