Skip to content

Latest commit

 

History

History
42 lines (34 loc) · 1.17 KB

mssqlserver-12329-database-engine-error.md

File metadata and controls

42 lines (34 loc) · 1.17 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic helpviewer_keywords
MSSQLSERVER_12329
MSSQLSERVER_12329
MashaMSFT
mathoma
04/04/2017
sql
supportability
reference
12329 (Database Engine error)

MSSQLSERVER_12329

[!INCLUDE SQL Server Azure SQL Database Azure SQL Managed Instance]

Details

Attribute Value
Product Name SQL Server
Event ID 12329
Event Source MSSQLSERVER
Component SQLEngine
Symbolic Name HK_UNSUPPORTED_NON_LATIN_CODEPAGE
Message Text The data types char(n) and varchar(n) using a collation that has a code page other than 1252 are not supported with construct.

Explanation

Do not use the data types char(n) and varchar(n) using a collation that has a code page other than 1252.

User Action

One unexpected situation that can generate this error is:

BEGIN ATOMIC WITH (TRANSACTION ISOLATION LEVEL = SNAPSHOT, LANGUAGE = 'us_english')  

Use this instead:

BEGIN ATOMIC WITH (TRANSACTION ISOLATION LEVEL = SNAPSHOT, LANGUAGE = N'us_english')