Skip to content

Commit 1d8d6cb

Browse files
dbulahovstbischof
authored andcommitted
update tutorials and model md files
Signed-off-by: dbulahov <[email protected]>
1 parent 804b8e3 commit 1d8d6cb

File tree

94 files changed

+2335
-291
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+2335
-291
lines changed

docs/cubeserver/model/class-AggregationLevel.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Maps a dimension level to a column in an aggregation table, defining how dimensi
2929
<td>1</td>
3030
</tr>
3131
<tr>
32-
<td colspan="5"><em>Boolean flag indicating whether this aggregation level represents a collapsed hierarchy level. When true, intermediate hierarchy levels are omitted in the aggregation table, allowing queries to roll up directly to higher levels without requiring intermediate level data.</em></td>
32+
<td colspan="5"><em>Boolean flag indicating whether this aggregation level represents a collapsed hierarchy level. When true, intermediate hierarchy levels are omitted in the aggregation table, allowing queries to roll up directly to higher levels without requiring intermediate level data. Default value is true.</em></td>
3333
</tr>
3434
<tr>
3535
<td><strong>name</strong></td>

docs/cubeserver/model/class-CalculatedMember.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,14 @@ Represents sophisticated computed members that are dynamically calculated using
6868
<td colspan="5"><em>Reference to the Hierarchy within which this calculated member should be positioned, establishing the dimensional context that determines the member's analytical scope, navigational placement, and integration with existing hierarchical structures. The hierarchy reference defines the analytical domain where the calculated member will be available for selection, filtering, and navigation operations, ensuring that computed members integrate seamlessly with dimensional browsing, member selection, and hierarchical drill-down capabilities provided by OLAP client applications and business intelligence tools.</em></td>
6969
</tr>
7070
<tr>
71-
<td><strong>physicalCube</strong></td>
72-
<td>PhysicalCube<a href="./class-PhysicalCube">🔗</a></td>
71+
<td><strong>cube</strong></td>
72+
<td>Cube<a href="./class-Cube">🔗</a></td>
7373
<td>1</td>
7474
<td>1</td>
7575
<td>false</td>
7676
</tr>
7777
<tr>
78-
<td colspan="5"><em>Required reference to the PhysicalCube that contains and manages this calculated member, establishing the analytical context and data scope within which the calculated member operates and ensuring proper integration with the cube's dimensional structure, measure definitions, and query processing capabilities. The physical cube reference defines the analytical environment where the calculated member can access fact data, reference other measures and members, and participate in multidimensional analysis operations including slicing, dicing, drilling, and pivoting across the cube's dimensional space.</em></td>
78+
<td colspan="5"><em>Required reference to the Cube that contains and manages this calculated member, establishing the analytical context and data scope within which the calculated member operates and ensuring proper integration with the cube's dimensional structure, measure definitions, and query processing capabilities. The cube reference defines the analytical environment where the calculated member can access fact data, reference other measures and members, and participate in multidimensional analysis operations including slicing, dicing, drilling, and pivoting across the cube's dimensional space.</em></td>
7979
</tr>
8080
</tbody>
8181
</table>
@@ -98,6 +98,6 @@ classDiagram
9898
9999
Member <|-- CalculatedMember
100100
CalculatedMember --> Hierarchy : hierarchy
101-
CalculatedMember --> PhysicalCube : physicalCube
101+
CalculatedMember --> Cube : cube
102102
103103
```

docs/cubeserver/model/class-Cube.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ Abstract base class for all cube types in the OLAP model. A cube represents a mu
106106

107107
- Catalog[🔗](./class-Catalog) → cubes
108108
- CubeConnector[🔗](./class-CubeConnector) → cube
109+
- CalculatedMember[🔗](./class-CalculatedMember) → cube
109110
- AccessCubeGrant[🔗](./class-AccessCubeGrant) → cube
110111

111112
## ClassDiagramm

docs/cubeserver/model/class-PhysicalCube.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,6 @@ A concrete cube implementation that maps directly to one or more fact tables in
106106

107107
- MeasureGroup[🔗](./class-MeasureGroup) → physicalCube
108108
- DimensionConnector[🔗](./class-DimensionConnector) → physicalCube
109-
- CalculatedMember[🔗](./class-CalculatedMember) → physicalCube
110109

111110
## ClassDiagramm
112111

docs/cubeserver/model/enum-ColumnInternalDataType.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ group: Enum
88
Enumeration that defines the internal data type classifications used throughout the OLAP framework for consistent data handling, SQL generation, comparison operations, formatting, and type validation across different database systems and analytical contexts. ColumnInternalDataType provides a unified type system that abstracts database-specific data type variations while maintaining the semantic information necessary for proper analytical processing, measure aggregation, dimensional sorting, and user interface presentation.
99
## Enumeration Literals
1010

11+
### UNDEFINED - (0)
12+
13+
<em>Enum Item that expresses, that the ColumnInternalDataType is not defines explicitly and should be derived from other sources like the type of the Column.</em>
14+
1115
### STRING - (0)
1216

1317
<em>Text data type for character strings, names, descriptions, and categorical values in dimensions and member properties.</em>

docs/cubeserver/model/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ classDiagram
378378
+ parent : EString
379379
}
380380
CalculatedMember --> Hierarchy : hierarchy
381-
CalculatedMember --> PhysicalCube : physicalCube
381+
CalculatedMember --> Cube : cube
382382
383383
CalculatedMember <|-- Member : inherit
384384

0 commit comments

Comments
 (0)