Database Requirements for SPM
There are some limitations observed while working with DB2 and MS SQL Server.
MS SQL Server Requirements
- Enable SNAPSHOT transaction isolation for MS SQL Server database.
To enable READ_COMMITTED_SNAPSHOT for the Service Performance Manager database, run the following commands as Database System Administrator (sa):
ALTER DATABASE <spmDB name> SET READ_COMMITTED_SNAPSHOT ON; ALTER DATABASE <spmDB name> SET ALLOW_SNAPSHOT_ISOLATION ON;
- When using SQL Server, ensure that you use case sensitive collation. You may enable case sensitive collation using a command similar to the following:
CREATE DATABASE spm COLLATE SQL_Latin1_General_CP1_CS_AS;
Refer to the SQL Server documentation for more information regarding collation.
Copyright © 2022. Cloud Software Group, Inc. All Rights Reserved.