This issue occurs when the vCenter Server installer cannot read the existing schema and creates the vCenter data objects in a different schema. After the install there is multiple schemas in the vCenter Server database (example dbo and vmw).
Run this command to verify if the vCenter Server database has multiple schema:
USE vc_database;
GO;
SELECT distinct SCHEMA_NAME(schema_id)
FROM sys.tables ;
GO;