I am using SQL Server as my source. These are my configuration settings:
OTLP Server Level Collation setting: SQL_Latin1_General_CP1_CI_AS
OTLP Database Level Collation setting: SQL_Latin1_General_CP1_CI_AS
SSAS Server Level Collation setting: Latin1_General_CS_AS
I have created a table with one column with column collation of SQL_Latin1_General_CP1_CS_AS. This table have the following values:
trEE
PlAnT
TREE
PLANT
Plant
Tree
plant
tReE
tree
pLaNt
tREE
Each of these records are unique because of case sensitive collation. It works well in OTLP Server, however when I try import to SSAS it says my dimension table have duplicate values. All values are replaced with first variation of the case sensitive value. See below for values after import.
trEE
PlAnT
trEE
PlAnT
PlAnT
trEE
PlAnT
trEE
trEE
PlAnT
trEE
Does anyone have a solution to this issue?
I have tried changing OTLP Server Collation and OTLP Database Collation settings. This did not resolve the issue.
I would like to import all the values as an Unique Value for Dimension Table.