Hello,
We have the following query which returns VM names along with other data for Snapshots older than 3 days old. What I would like to know is if its possible to exclude VM's that feature "Replica" in there name, we don't need these on the report as its expected
SELECT vm.Name, vm.GuestState, vm.OldestSnapshotDate, vm.TotalStorageSizeUsed, vm.SnapshotSummaryCount, vm.PlatformID, vm.Status, vm.DetailsUrl, vm.Host.HostName, vm.Host.Cluster.Name AS ClusterName
FROM Orion.VIM.VirtualMachines vm
WHERE DayDiff(vm.OldestSnapshotDate, getUtcDate()) > 3
Thanks Sam