This issue may also occur if the password for the account on the SQL database server used to connect to the vCenter Server database has expired.
To resolve this issue, verify the name of the SQL Server instance and change the transaction log size.
To verify the name of the SQL Server instance and change the transaction log size:
- Verify the actual name of the SQL Server instance used with vCenter Server.
- Start the ODBC Data Sources manager from the Control Panel > Administrative Tools > Data Sources (ODBC).
- Select VMware VirtualCenter DSN in the System DSN tab and click configure to see the details.
- The server name is shown in the Server edit box.
- Use the SQL Server command line tool to change the transaction log size limit.
- Start the command prompt.
- Run the command osql -S <server name from ODBC DSN> -E
- Run next SQL:
- go
- ALTER DATABASE [VIM_VCDB]
- MODIFY FILE ( NAME = N'VIM_VCDB_LOG', MAXSIZE = UNLIMITED )
- go
- Exit the command tool by typing exit.