Hi @all,
over the command Get-VBRRestorePoint I become a list with all stored Jobs with different values. Can every one give me the complete command that I only see the Jobs which have the values HasSql or HasOracle = true. I Need a list where I see only the SQL and Oracle backups. Can everyoune help me ?
Thanks
Michael
-
- Influencer
- Posts: 12
- Liked: never
- Joined: Feb 07, 2017 10:31 am
- Full Name: Michael fenske
- Contact:
-
- Product Manager
- Posts: 20408
- Liked: 2299 times
- Joined: Oct 26, 2012 3:28 pm
- Full Name: Vladimir Eremin
- Contact:
Re: Get-VBRRestorePoint and HasSql and HasOracle
The following example might answer your requirements:
Thanks.
Code: Select all
Asnp VeeamPSSnapin
Get-VBRRestorePoint | where {$_.HasOracle -eq $True -or $_.HasSQL -eq $True} | select {$_.FindSourceJob().name} -Unique
Who is online
Users browsing this forum: No registered users and 17 guests