SYMPTOM:
The select clause in the report Structured Query Language (SQL) displays multiple aliases for the same column name in Strategy.
The following procedure uses the Strategy Tutorial project to describe how to reproduce this behavior:


Note that the select clause repeats the table column REGION_NAME three times as represented by the aliases REGION_NAME, REGION_NAME0, and REGION_NAME1. This also occurs with REGION_ID.
CAUSE:
This behavior occurs when multiple attributes in a report map to the same column of the same table in the data warehouse.
Attributes Double_Region and Triple_Region are identical copies of attribute Region, therefore all three attributes map to the same REGION_ID and REGION_NAME columns in data warehouse. Different aliases are needed to ensure uniqueness for the three attributes as the same column can come from a different table and contain different results. That means this behavior occurs by design since: