나는 Saiku 서버용 몬드리안 스키마에서 큐브를 디자인하고 있습니다. 다음은 내가 만들 예정인 큐브에도 복제해야하는 데모 Foodmart 스키마의 Dimension입니다. '레벨'에서 '속성'의 역할을 이해할 수 없습니다. 또한 '속성'목록이 Saiku의 치수로 표시되지 않는 이유는 무엇입니까?saiku에 대한 몬 드리 안의 치수 속성
<Dimension name="Store">
<Hierarchy hasAll="true" primaryKey="store_id">
<Table name="store"/>
<Level name="Store Country" column="store_country" uniqueMembers="true"/>
<Level name="Store State" column="store_state" uniqueMembers="true"/>
<Level name="Store City" column="store_city" uniqueMembers="false"/>
<Level name="Store Name" column="store_name" uniqueMembers="true">
<Property name="Store Type" column="store_type"/>
<Property name="Store Manager" column="store_manager"/>
<Property name="Store Sqft" column="store_sqft" type="Numeric"/>
<Property name="Grocery Sqft" column="grocery_sqft" type="Numeric"/>
<Property name="Frozen Sqft" column="frozen_sqft" type="Numeric"/>
<Property name="Meat Sqft" column="meat_sqft" type="Numeric"/>
<Property name="Has coffee bar" column="coffee_bar" type="Boolean"/>
<Property name="Street address" column="store_street_address" type="String"/>
</Level>
</Hierarchy>
</Dimension>