Table of Contents

Search

  1. Preface
  2. Installation Overview
  3. Before You Begin
  4. Pre-Installation Tasks
  5. Data Integration Hub Installation
  6. Post-Installation Tasks
  7. Upgrading Data Integration Hub
  8. Starting and Stopping Data Integration Hub
  9. Optional Data Integration Hub Configuration
  10. Installing and Configuring the Data Integration Hub Accelerator for Data Archive
  11. Troubleshooting the Data Integration Hub Installation
  12. Uninstallation

Installation and Configuration Guide

Installation and Configuration Guide

Configure the Microsoft SQL Server Database

Configure the Microsoft SQL Server Database

If you install
Data Integration Hub
repositories on a Microsoft SQL Server database, enable the
READ_COMMITTED_SNAPSHOT
database option. If you install the Dashboard and Reports component, enable the
READ_COMMITTED_SNAPSHOT
option on the operational data store as well.
If you use Microsoft SQL Server 2012, you can set the option
Is read committed snapshot on
in Microsoft SQL Server Management Studio to
true
instead.
  1. Open an SQL query for the database server with rights to set database options.
  2. Run the following SQL statements:
    ALTER DATABASE [<database_name>] SET SINGLE_USER WITH ROLLBACK IMMEDIATE
  3. Run the following SQL query:
    ALTER DATABASE <database_name> SET READ_COMMITTED_SNAPSHOT ON
  4. To verify that this option is set, run the following SQL query:
    SELECT is_read_committed_snapshot_on FROM sys.databases WHERE name = '<database_name>'
    If the option is set, the query returns the value 1. If the option is not set, the query returns the value 0.
  5. Run the following SQL statement to forcefully disconnect all users from the system:
    ALTER DATABASE [<database_name>] SET MULTI_USER

0 COMMENTS

We’d like to hear from you!