Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Hinweis: |
|---|
| Dieses Feature wird in der nächsten Version von Microsoft SQL Server entfernt. Verwenden Sie dieses Feature nicht zum Entwickeln neuer Anwendungen, und planen Sie das Ändern von Anwendungen, in denen es zurzeit verwendet wird, zum frühstmöglichen Zeitpunkt ein. |
The Remove method of a Decision Support Objects (DSO) collection removes an item from the collection. This method does not apply to CustomProperties collections.
Syntax
object.Remove(vntIndexKey)
Parameter
- object
An instance of a DSO collection object.
vntIndexKey
Either the index (integer) or key (string) to the collection.
Hinweis:All collections in the DSO object model are one-based. That is, the first item in the collection has an index of 1 and the last item has an index of Count.
Hinweise
The Remove method, by removing the selected member from the collection, removes the selected member from both the Analysis server and the repository.
Beispiel
Use the following code to remove the partition named EastCoast from the MDStores collection of partitions for a cube:
' Assume the existence of an object dsoCube
' of ClassType clsCube.
' Remove using the key
dsoCube.MDStores.Remove "EastCoast"
' OR Remove using the Index
dsoCube.MDStores.Remove 2