Table of Contents

Search

  1. Preface
  2. Installation Overview
  3. Before You Begin
  4. Pre-Installation Tasks
  5. B2B Data Exchange Installation
  6. Post-Installation Tasks
  7. Installing the Partners Portal on Non-B2B Data Exchange Nodes
  8. Upgrading B2B Data Exchange
  9. Starting and Stopping B2B Data Exchange
  10. Optional B2B Data Exchange Configuration
  11. Migrating OEM Managed File Transfer Endpoint
  12. Installing and Configuring the B2B Data Exchange Accelerator for Data Archive
  13. Uninstallation

Installation and Configuration Guide

Installation and Configuration Guide

Configure the Microsoft SQL Server Database

Configure the Microsoft SQL Server Database

If you install
B2B Data Exchange
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!