Parent (Dimension Interface)
Примечание. |
---|
В следующей версии Microsoft SQL Server эта возможность будет удалена. Не используйте ее при работе над новыми приложениями и как можно быстрее измените приложения, в которых она в настоящее время используется. |
The Parent property of the Dimension interface contains a reference to the parent MDStore object.
Applies To:clsAggregationDimension, clsCubeDimension, clsDatabaseDimension, clsPartitionDimension
Data Type
Access
Read-only
Замечания
The value of the ClassType property of the parent object depends on the value of the ClassType property of the object.
Dimension object ClassType | Parent object ClassType |
---|---|
clsDatabaseDimension |
|
clsCubeDimension |
|
clsPartitionDimension |
|
clsAggregationDimension |
Пример
Use the following code to obtain the parent of a dimension object:
'Assume an object (dsoDim) of ClassType clsDimension exists.
Dim objClassType As ClassTypes
objClassType = dsoDim.Parent.ClassType
Select Case objClassType
Case clsDatabase
'Insert code for the database parent object.
Case clsCube
'Insert code for the cube/virtual cube parent object.
Case clsPartiton
'Insert code for the partition parent object.
Case clsAggregation
'Insert code for the aggregation parent object.
End Select