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. Appendix A: Troubleshooting High Availability
  8. Appendix B: High Availability Log Messages
  9. Appendix C: Port Number Reference
  10. Appendix D: Glossary

High Availability Installation Guide

High Availability Installation 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.
  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!