This may be an indicator of Vcloud DB performance issues and I would recommend performing some clean up of both Vcenter and Vcloud DB's. Befroe running any of these procedures please make a back up of your DB Vcenter DB Maintenance Run this on all Vcenter Instances 1. Stop the vCenter Server Service 2. Stop the vCloud Cell Services for all Cells (Service vmware-vcd stop) 3. Run the following against the vCenter DB: ALTER TABLE VPX_EVENT_ARG DROP CONSTRAINT FK_VPX_EVENT_ARG_REF_EVENT; ALTER TABLE VPX_EVENT_ARG DROP CONSTRAINT FK_VPX_EVENT_ARG_REF_ENTITY; ALTER TABLE VPX_ENTITY_LAST_EVENT DROP CONSTRAINT FK_VPX_LAST_EVENT_EVENT; truncate table VPX_TASK; truncate table VPX_ENTITY_LAST_EVENT; truncate table VPX_EVENT; truncate table VPX_EVENT_ARG; alter table VPX_EVENT_ARG add constraint FK_VPX_EVENT_ARG_REF_EVENT foreign key(EVENT_ID) references VPX_EVENT (EVENT_ID) on delete cascade; alter table VPX_EVENT_ARG add constraint FK_VPX_EVENT_ARG_REF_ENTITY foreign key (OBJ_TYPE) refe...