Sources 요소(XMLA)
부모 MergePartitions 요소에 대한 원본 요소의 컬렉션을 포함합니다.
구문
<MergePartitions>
...
<Sources>
<Source>...</Source>
</Sources>
...
</MergePartitions>
요소 특성
특성 | Description |
---|---|
데이터 형식 및 길이 | None |
기본값 | None |
카디널리티 | 1-1: 한 번만 나타나는 필수 요소입니다. |
요소 관계
관계 | 요소 |
---|---|
부모 요소 | MergePartitions |
자식 요소 | 원본 |
설명
예제
다음 예에서는 Internet Sales
측정값 그룹의 4개 파티션을 모두 Internet_Sales_2004
대상 파티션으로 결합합니다. 이 예제에서는 샘플 데이터베이스의 Adventure Works DW 큐브를 사용합니다.
<MergePartitions xmlns="http://schemas.microsoft.com/analysisservices/2003/engine">
<Sources>
<Source>
<DatabaseID>database</DatabaseID>
<CubeID>Adventure Works DW</CubeID>
<MeasureGroupID>Fact Internet Sales 1</MeasureGroupID>
<PartitionID>Internet_Sales_2001</PartitionID>
</Source>
<Source>
<DatabaseID>database</DatabaseID>
<CubeID>Adventure Works DW</CubeID>
<MeasureGroupID>Fact Internet Sales 1</MeasureGroupID>
<PartitionID>Internet_Sales_2002</PartitionID>
</Source>
<Source>
<DatabaseID>database</DatabaseID>
<CubeID>Adventure Works DW</CubeID>
<MeasureGroupID>Fact Internet Sales 1</MeasureGroupID>
<PartitionID>Internet_Sales_2003</PartitionID>
</Source>
</Sources>
<Target>
<DatabaseID>database</DatabaseID>
<CubeID>Adventure Works DW</CubeID>
<MeasureGroupID>Fact Internet Sales 1</MeasureGroupID>
<PartitionID>Internet_Sales_2004</PartitionID>
</Target>
</MergePartitions>