I face actually an issue where I have a database in which I have a comment field in one table. It is a nvarchar(max) field. Indexing is not possible and not reasonable.
The Problem is that whenever I add this column to the showing columns in Tableau, Tableau adds a GROUP BY for that column. That is unexpected but not the real issue.
The real issue comes up then I want to exclude rows where no comment was entered. So I use QuickFilter -> Select from list -> Click "Exclude"-checkbox -> click NULL value.
Now Tableau adds an inner join to this filter which looks like it is retrieving all possible values and then joining via non indexed field "comment". This is incredible slow.
A simple "WHERE comment is not NULL" would run in milliseconds, the way Tableau does it, takes 10 minutes.
Is there another way to filter for "not NULL"? I am a newbie to Tableau.
Thanks a lot.