1. SAP HANA Cloud
SAP HANA Database Modeling Guide for SAP Business Application Studio
Section: "Creating Joins in the Join Node".
Reference Detail: The guide states
"The referential join is an optimized join... The query optimizer can decide to not execute the join if the fields from the right table are not requested by the query." This directly supports the concept of ignoring an unnecessary data source for performance.
2. SAP HANA Cloud
SAP HANA Database Performance Guide for Developers
Section: "Join Pruning".
Reference Detail: This guide explains join pruning as a key optimization feature. It details that when referential joins are used and the dimension table attributes are not needed
the join is eliminated from the execution plan
which is the technical basis for the correct answer.