Hey,
is there a way where I can create an Aggregation reflection with a SQL-Command without DIMENSIONS
These didn’t work for me:
ALTER DATASET “@dremio”.“Dataset” CREATE AGGREGATE REFLECTION Dataset_AGG USING DIMENSIONS () MEASURES (“Agencia_ID”);
ALTER DATASET “@dremio”.“Dataset” CREATE AGGREGATE REFLECTION Dataset_AGG USING MEASURES (“Agencia_ID”);
But the other way around with only Dimensions works fine:
ALTER DATASET “@dremio”.“Dataset” CREATE AGGREGATE REFLECTION Dataset USING DIMENSIONS (“Agencia_ID”) MEASURES();
Regards
Jonas