Reputation: 17363
I know it is recommended to build dimension using a view on source table because it allows to make changes to the dimension contents without opening the SSAS project. However, I cannot create a view in the source system.
How can I load only a subset of data into a dimension?
Upvotes: 1
Views: 817
Reputation: 17363
A named query can be used to filter out unnecessary dimension members. Conceptually it is similar to a database view and the source RDBMS will take care of data processing (e.g. filtering it), but it is defined in the SSAS project.
Replace Table / With New Named Query...
from the context menu.WHERE
clause to the query and make any other changes you need:Upvotes: 3