I want to create a clustered columnstore index in a table using the following query:
CREATE CLUSTERED COLUMNSTORE INDEX cci
ON agl_20180319_bck
And I am getting this error:
Msg 35343, Level 16, State 1, Line 6
The statement failed. Column 'memberOf' has a data type that cannot participate in a columnstore index. Omit column 'memberOf'.
The 'memberOf' is in this type: memberOf nvarchar(max)
.
How to overcome/ignore this error and what does it mean?