Table of Contents

Search

  1. About the Test Data Management Configuration Guide
  2. Test Data Management Configuration Overview
  3. Before You Configure Test Data Management
  4. Prepare for Application Services and Databases
  5. Create the Application Services
  6. Configure Test Data Management
  7. Starting and Stopping Informatica Services
  8. Appendix A: Infacmd

Configuration Guide

Configuration Guide

Microsoft SQL Server Database Requirements

Microsoft SQL Server Database Requirements

Consider the following rules and guidelines when you set up the repository:
  • You must set the collation to
    case insensitive
    on the database.
  • Set the allow snapshot isolation and read committed isolation level to ALLOW_SNAPSHOT_ISOLATION and READ_COMMITTED_SNAPSHOT to minimize locking contention.
    To set the isolation level for the database, run the following commands:
    ALTER DATABASE
    DatabaseName
    SET ALLOW_SNAPSHOT_ISOLATION ON
    ALTER DATABASE
    DatabaseName
    SET READ_COMMITTED_SNAPSHOT ON
    To verify that the isolation level for the database is correct, run the following commands:
    SELECT snapshot_isolation_state FROM sys.databases WHERE name=[DatabaseName]
    SELECT is_read_committed_snapshot_on FROM sys.databases WHERE name =
    DatabaseName
  • The database user account must have the CONNECT, CREATE TABLE, and CREATE VIEW privileges.
For more information about configuring the database, see the documentation for your database system.

0 COMMENTS

We’d like to hear from you!