Skip to main content

plugin_proval_vssadminstorage

Purpose

This table contains the VSSAdmin storage details.

Dependencies

Tables

plugin_proval_vssadminstorage

ColumnTypeExplanation
computeridINTComputer ID of the agent
ShadowCopyVolumeVARCHARVolume letter where VSSAdmin is enabled
ShadowStorageUsedVARCHARVolume storage used by VSS storage
ShadowStorageAllocatedVARCHARThe total allocated storage space for VSS storage
ShadowStorageMaxVARCHARMaximum storage for the VSS storage
TimeStampDATETIMEStores the date when the script was last executed

SQL

CREATE TABLE IF NOT EXISTS `labtech`.`plugin_proval_vssadminstorage` (
`computerid` INT(11) NOT NULL,
`ShadowCopyVolume` VARCHAR(50) NOT NULL,
`ShadowStorageUsed` VARCHAR(50) NOT NULL,
`ShadowStorageAllocated` VARCHAR(50) NOT NULL,
`ShadowStorageMax` VARCHAR(50) NOT NULL,
`TimeStamp` DATETIME NOT NULL,
PRIMARY KEY (`computerid`, `ShadowCopyVolume`),
CONSTRAINT `plugin_proval_vssadminstorage_ibfk_1` FOREIGN KEY (`computerid`) REFERENCES `labtech`.`computers`(`ComputerID`) ON UPDATE NO ACTION ON DELETE CASCADE
);