Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents

...

SQL Server

The user with which the application should connect to the database needs the following roles in order to run the database correctly:

...

Code Block
USE [master]
GO
ALTER DATABASE [<database>] COLLATE SQL_Latin1_General_CP1_CI_AS
GO

...

Oracle Server

The user with which the application should connect to the database needs the following roles in order to run the database correctly:

...

The collation for the database has to be set to AL32UTF8.

...

MySQL Server

The user with which the application should connect to the database needs the following roles in order to run the database correctly:

...