When VCB starts a backup job of a VM (either file or full) a snapshot is created - as part of the creation of that snapshot the Vmtools running on the VM (presuming vmtools is installed and running) will quiesce the file system (by default on Windows VMs).
(This default behaviour can be disabled by uninstalling the file system driver that does the quiescing)
This file system quiescing can cause issues with databases.
You can disable it - but the DB would still not necessarilly be backed up in a
data consistent manner - neither would the file system.
Better to use a custom pre-freeze and post -thaw scripts to stop Exchange/SQL before VCB takes the snapshot and start them again once the snapshot is complete.
(This would obviously mean the backups would need to be scheduled outside the servers SLA)
The pre and post scripts could be as simple as a couple of batfiles containing some net stop xxxx[/i] and net start xxxx[/i] commands.
Or you could write a couple of more sophisticated stop and start scripts in vbs or something.
Dinny