This discussion has been locked. The information referenced herein may be inaccurate due to age, software updates, or external references.
You can no longer post new replies to this discussion. If you have a similar question you can start a new discussion in this forum.

VMAN Snapshot query - summary count = 0, old snapshots still shown.

Hi All,

Noticed this yesterday, is it an issue. Running: VMAN 8.5.0 HF2

[dbo].[VirtualMachines] has a column SnapshotSummaryCount
It appears that this value can be 0 for a VM, but a snapshot reference/s can still exist in [dbo].[VIM_Snapshots].

We tested this, deleted a VM's only snapshot, the reference to the snapshot remains but the count drops to 0.


I would expect most vms to have a 0 snapshot count and no entry in [dbo].[VIM_Snapshots] at that point; should it not clear out once a snapshot is deleted or on a regular basis? I have checked the next working day and still there.


Are these now orphaned. Just concerned if indicative of an issue. Does anyone else see this in their installations?


This may show them easier:


SELECT VMV.VirtualMachineID,
VMV.DisplayName,
VMV.PlatformName,
VMV.SnapshotSummaryCount,
VMV.GuestState as GuestState,
SS.SnapshotID,
SS.Name as "SnapShot Name",
SS.DateCreated as SnapshotCreation

FROM [dbo].[VirtualMachinesView] as VMV inner join [dbo].[VIM_Snapshots] as SS on VMV.VirtualMachineID=SS.VirtualMachineID
--where SnapshotSummaryCount !=0 and PlatformName != 'Hyper-V'
--to hide the 0s and limit it to VMware.

Thank you