次の方法で共有


NamedSet クラス

指定されたキューブの名前付きセットを表します。

名前空間:  Microsoft.AnalysisServices.AdomdClient
アセンブリ:  Microsoft.AnalysisServices.AdomdClient (Microsoft.AnalysisServices.AdomdClient.dll)

構文

'宣言
Public NotInheritable Class NamedSet _
    Implements IMetadataObject
'使用
Dim instance As NamedSet
public sealed class NamedSet : IMetadataObject
public ref class NamedSet sealed : IMetadataObject
[<SealedAttribute>]
type NamedSet =  
    class
        interface IMetadataObject
    end
public final class NamedSet implements IMetadataObject

説明

名前付きセットは保存されるセット式であり、別名に関連付けられ、キューブの構造の一部として定義されます。多次元式 (MDX) では、セット式は長く複雑な宣言となる場合があります。名前付きセットを使用することで、キューブを扱う MDX または XML for Analysis クエリで頻繁に使用されるセット式の管理が簡単になり、セット式とそれを使用するクエリを個別に管理することができるようになります。

NamedSet は、名前付きセットのメタデータを調べてクエリに組み込むことができるように、名前付きセットの別名とセット式をカプセル化します。

使用例

次のサブルーチンでは、CubeDef を受け取り、NamedSets コレクションに対する繰り返し処理を実行して、コレクション内の各 NamedSet についての情報を表示します。

Public Sub ListNamedSets(ByRef CubeToCheck As CubeDef)

    ' Check the parameter before performing actions on it.
    If CubeToCheck Is Nothing Then
        Throw New System.ArgumentNullException("CubeToCheck")
    Else
        ' Iterate through the NamedSets collection of the
        ' CubeDef object.

        Try
            Dim nsetToCheck As NamedSet

            Debug.WriteLine("Found " & CubeToCheck.NamedSets.Count & _
                " named set(s) in cube:")

            For Each nsetToCheck In CubeToCheck.NamedSets
                Debug.WriteLine("Named Set:  " & nsetToCheck.Name)
                Debug.WriteLine("    Description:  " & _
                    nsetToCheck.Description)
                Debug.WriteLine("    Expression:   " & _
                    nsetToCheck.Expression)
            Next
        Catch ex As AdomdConnectionException
            ' The connection could not be opened or was disconnected.
            ' This error can occur at any time, if the provider is 
            ' disconnected from the server.
            Debug.WriteLine(ex)
            Throw ex
        Catch ex As AdomdErrorResponseException
            ' A response is received from a provider which indicates an error.
            Debug.WriteLine(ex)
            Throw ex
        Catch ex As AdomdUnknownResponseException
            ' A response has been returned from the provider that 
            ' was not understood.
            Debug.WriteLine(ex)
            Throw ex
        Catch ex As AdomdCacheExpiredException
            ' A cached version of an ADOMD.NET object is no longer valid.
            ' This error is typically raised when reviewing metadata.
            Debug.WriteLine(ex)
            Throw ex
        Catch ex As AdomdException
            ' Any other error raised by ADOMD.NET.
            Debug.WriteLine(ex)
            Throw ex
        Catch ex As Exception
            ' Any other error.
            Debug.WriteLine(ex)
            Throw ex
        End Try
    End If
End Sub

継承階層

System. . :: . .Object
  Microsoft.AnalysisServices.AdomdClient..::..NamedSet

スレッド セーフ

この型の public static (Visual Basic では Shared) のメンバーはすべて、スレッド セーフです。インスタンス メンバーの場合は、スレッド セーフであるとは限りません。