Important Settings for MS-SQL Server
During installation of the MS-SQL Server it is highly recommended that the Collation designation of databases is set to Latin1_General_BIN to ensure collation is the same as in sorted files.
|
To check the general collation setting for the server execute the following query:
SELECT SERVERPROPERTY ('COLLATION');To check the collation setting for a specific database execute the following query:
SELECT DATABASEPROPERTYEX ('[DATABASE NAME]', 'COLLATION');| Upgrading to newer MS-SQL Server versions |
|---|
| When upgrading older databases to newer MS-SQL Server versions, the compatibility mode of the imported database will be set to the old version. AMT, however, expects that the database will NOT be in compatibility mode. Please ensure that the compatibility mode of such an upgraded database is switched off. |
