Troubleshooting with SQL Server Database
Resolve the errors that you may come across while configuring the SQL Server database.
| Issue | Description | Solution |
|---|---|---|
| Database Verification Message Issue | The Option is: isolation level Value: read committed snapshot message is not displayed in the console. | To resolve this issue, perform the following steps:
USE [master] GO ALTER DATABASE mdmuser SET ALLOW_SNAPSHOT_ISOLATION ON ALTER DATABASE mdmuser SET READ_COMMITTED_SNAPSHOT on GO USE [mdmuser] DBCC useroptions GO After you run DBCC user options, the isolation level is displayed as a read committed snapshot. |