Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2019 03:52 AM
I have the same issue regarding this case.
CREATE TABLE [dbo].[SampleTable14](
[firstname] [varchar](8000) NULL,
[lastname] [nvarchar](300) NULL,
[gender] [nvarchar](300) NULL,
[location] [nvarchar](300) NULL,
[subscription_type] [nvarchar](300) NULL
)
WITH
(
DISTRIBUTION = ROUND_ROBIN,
CLUSTERED COLUMNSTORE INDEX
)
GO
I also tried by maximizing the table length to 1000 and data length to 8000.