clsCubeAnalyzer
Notes
Cette fonctionnalité sera supprimée dans la prochaine version de Microsoft SQL Server. Évitez d'utiliser cette fonctionnalité dans de nouveaux travaux de développement, et modifiez dès que possible les applications qui utilisent actuellement cette fonctionnalité.
A Decision Support Objects (DSO) object of ClassType clsCubeAnalyzer contains a single method used to extract information from the query log. The query log stores the descriptions of queries executed on the Analysis server. This object provides a method through its own internal interface.
There are no collections or properties associated with an object of ClassType clsCubeAnalyzer.
Examples
Retrieving the Cube Query Log
The following code example retrieves the entire contents of a cube's query log from the Analysis server and prints the number of records in the immediate window:
Option Explicit
Public dsoServer As DSO.Server
Public dsoDB As DSO.MDStore
Public dsoCube As DSO.MDStore
Public dsoCubeAnalyzer As DSO.CubeAnalyzer
Public ADODBRecSet As ADODB.Recordset
Public Sub AnalyzeCube()
If dsoServer Is Nothing Then
Set dsoServer = New DSO.Server
'MyServer is the name of the Analysis server.
dsoServer.Connect ("MyServer")
End If
'Get first database from server.
Set dsoDB = dsoServer.MDStores(1)
'Get first cube from database.
Set dsoCube = dsoDB.MDStores(1)
'Get analyzer object from cube.
Set dsoCubeAnalyzer = dsoCube.Analyzer
'Get recordset from log.
Set ADODBRecSet = dsoCubeAnalyzer.OpenQueryLogRecordset _
("SELECT * FROM QueryLog")
If ADODBRecSet.BOF And ADODBRecSet.EOF Then
Debug.Print "<<No records in query log>>"
Else
ADODBRecSet.MoveLast
Debug.Print " Record count: " & ADODBRecSet.RecordCount
End If
End Sub