Table of Contents

Search

  1. Preface
  2. Introduction to High Availability
  3. Set Up the High Availability Environment
  4. Set Up a High Availability Cluster on Windows
  5. Steps to Setting Up a High Availability Cluster in Linux
  6. Optional High Availability Configuration
  7. Troubleshooting High Availability
  8. High Availability Log Messages
  9. Port Number Reference
  10. Glossary

High Availability Installation Guide

High Availability Installation Guide

Configure Microsoft SQL Server Database

Configure Microsoft SQL Server Database

If you use a Microsoft SQL Server database for the
B2B Data Exchange
repository, enable the
READ_COMMITTED_SNAPSHOT
database option. If you install the Dashboard and Reports component, enable this 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!