In Strategy Developer, to create a list of the individual fact entries for an attribute in a scenario where the attribute has a fact table as its lookup table Very Large Database (VLDB) 'Distinct/Group By option (when no aggregation and not table key)', users can create an attribute 'Year' that uses the YR_CATEGORY_SLS fact table in Strategy Tutorial (Vmall).
When using such attribute on its own in a report, the SQL created is the following:
select distinct a.11 As Year_Id
from a.11
In Strategy Developer, there is a VLDB setting called 'Distinct/Group By option (when no aggregation and not table key)' at the report level (Select/Insert > Distinct/Group By option). If no aggregation is needed and the attribute defined on the table is not a primary key, it tells the engine whether to use Select Distinct, Group By or neither.

It can have three values:
If it is needed to list all the entries in the fact table, it is necessary to use the second setting No DISTINCT no GROUP BY leaving the check box for 'Use default inherited value' unchecked.
7723