Edition (clsServer)
注 |
---|
この機能は、Microsoft SQL Server の次のバージョンで削除されます。新規の開発作業ではこの機能を使用しないようにし、現在この機能を使用しているアプリケーションはできるだけ早く修正してください。 |
The Edition property of an object of ClassType clsServer identifies which edition of Microsoft® SQL Server™ 2000 Analysis Services is installed.
Access
Read-only
説明
The functionality of Analysis Services varies depending on the edition installed.
使用例
The following code example checks the Edition property of a clsServer object to determine feature support.
Dim dsoServer As New DSO.Server
' Connect to the local Analysis server.
dsoServer.Connect "LocalHost"
' Check the Edition property.
Select Case dsoServer.Edition
Case olapEditionUnlimited
' Insert code for Enterprise edition features.
Case olapEditionPivotOnly
' Reserved for future use.
Case olapEditionNoPartitions
' Insert code for Standard edition features.
Case olapEditionError
' An error occurred while retrieving this information.
End Select