An error occurred while trying to connect to the data source. please see the log file for more details.
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
).
USE vc_database;
GO;
SELECT distinct SCHEMA_NAME(schema_id)
FROM sys.tables ;
GO;