November 10, 2016 at 11:40 pm
is SQL_Latin1_General_CP1_CI_AS_KS_WS a valid sql server Colation and
can a server instance with Colation Latin1_General_BIN support such a Colation.
November 11, 2016 at 1:10 am
sqlserverDBA2016 (11/10/2016)
is SQL_Latin1_General_CP1_CI_AS_KS_WS a valid sql server Colation andcan a server instance with Colation Latin1_General_BIN support such a Colation.
Quick question, is this a SharePoint database?
π
AFAIK, SQL_Latin1_General_CP1_CI_AS_KS_WS is not a valid collation on SQL Server 2014/2016 as this query does not return anything
SELECT
x.name
,x.description
FROM sys.fn_helpcollations() x
WHERE x.name = 'SQL_Latin1_General_CP1_CI_AS_KS_WS';
Further, you can always try
CREATE DATABASE [collstest]
CONTAINMENT = NONE
ON PRIMARY
( NAME = N'collstest', FILENAME = N'C:\SQLDATA\collstest.mdf' , SIZE = 8192KB , FILEGROWTH = 65536KB )
LOG ON
( NAME = N'collstest_log', FILENAME = N'C:\SQLLOG\collstest_log.ldf' , SIZE = 8192KB , FILEGROWTH = 65536KB )
COLLATE SQL_Latin1_General_CP1_CI_AS_KS_WS
GO
November 11, 2016 at 1:51 am
Yes it is a shared point database, and are you telling me that with swl server 2014 I won't be able to have this colation, in that case what do I need
November 11, 2016 at 2:26 am
sqlserverDBA2016 (11/11/2016)
Yes it is a shared point database, and are you telling me that with swl server 2014 I won't be able to have this colation, in that case what do I need
From MS Support :Supportability regarding SQL collation for SharePoint Databases and TempDB
π
βThe SQL Server collation must be configured for case-insensitive. The SQL Server database collation must be configured for case-insensitive, accent-sensitive, Kana-sensitive, and width-sensitive. This is to ensure file name uniqueness consistent with the Windows operating system.β
However, we do not support changing the default collation (Latin1_General_CI_AS_KS_WS) for SharePoint databases to any other collations (CI, AS, KS, WS).
We support any CI collation for the SQL instance (for master, tempdb databases). However we recommend using Latin1_General_CI_AS_KS_WS as the instance default collation (master, tempdb databases).
November 11, 2016 at 3:11 am
OK thanks, does that mean that the colation SQL_Latin1_General_CP1_CI_AS_KS_WS is not supported in SQL server and not the right one for share point
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply