Suppose I have a dimension DIM_Users with two attributes UserId [bigint]
and Reputation [int]
. In this case I can successfully process the table.
But, after I add DisplayName [nvarchar(255)]
attribute to the dimension, processing fails with the next message:
Errors in the OLAP storage engine: The attribute key cannot be found when processing: Table: 'cube_DIM_Users', Column: 'DisplayName', Value: 'Justin ᚅᚔᚈᚄᚒᚔ'. The attribute is 'Display Name'.
Comparing the screenshots I've noticed that the first time 5987286 UserIds were processed (which is the correct value), but the second time only 70000.
And also I see that the value "Justin ᚅᚔᚈᚄᚒᚔ" looks strange, but I can't figure out how it can affect processing of the Attribute Key.
Any ideas about what's wrong with my dimension?
I've found this article but it doesn't help.