Server.ExecuteCaptureLog Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ExecuteCaptureLog(Boolean, Boolean, Boolean, Boolean) |
Executes the contents of the capture log on the server, indicates whether execution will be in a transactional and/or parallel mode, indicates whether affected objects will be processed, and indicates whether to skip volatile objects. |
ExecuteCaptureLog(Boolean, Boolean, Boolean) |
Executes the contents of the capture log on the server, indicates whether execution will be in a transactional and/or parallel mode, and indicates whether affected objects will be processed. |
ExecuteCaptureLog(Boolean, Boolean) |
Executes the contents of the capture log on the server, and indicates whether execution will be in a transactional and/or parallel mode. Affected objects will not be processed. |
ExecuteCaptureLog(Boolean, Boolean, Boolean, Boolean)
Executes the contents of the capture log on the server, indicates whether execution will be in a transactional and/or parallel mode, indicates whether affected objects will be processed, and indicates whether to skip volatile objects.
public Microsoft.AnalysisServices.XmlaResultCollection ExecuteCaptureLog (bool transactional, bool parallel, bool processAffected, bool skipVolatileObjects);
member this.ExecuteCaptureLog : bool * bool * bool * bool -> Microsoft.AnalysisServices.XmlaResultCollection
Public Function ExecuteCaptureLog (transactional As Boolean, parallel As Boolean, processAffected As Boolean, skipVolatileObjects As Boolean) As XmlaResultCollection
Parameters
- transactional
- Boolean
true to indicate that the capture log will be executed within a transaction; otherwise, false.
- parallel
- Boolean
true to indicate that the capture log entries will be executed in parallel; otherwise, false.
- processAffected
- Boolean
true to indicate that the affected objects will be processed; otherwise, false.
- skipVolatileObjects
- Boolean
true to skip logging for volatile objects; otherwise, false.
Returns
An XmlaResultCollection containing the results of the command(s).
Applies to
ExecuteCaptureLog(Boolean, Boolean, Boolean)
Executes the contents of the capture log on the server, indicates whether execution will be in a transactional and/or parallel mode, and indicates whether affected objects will be processed.
public Microsoft.AnalysisServices.XmlaResultCollection ExecuteCaptureLog (bool transactional, bool parallel, bool processAffected);
member this.ExecuteCaptureLog : bool * bool * bool -> Microsoft.AnalysisServices.XmlaResultCollection
Public Function ExecuteCaptureLog (transactional As Boolean, parallel As Boolean, processAffected As Boolean) As XmlaResultCollection
Parameters
- transactional
- Boolean
true to indicate that the capture log will be executed within a transaction; otherwise, false.
- parallel
- Boolean
true to indicate that the capture log entries will be executed in parallel; otherwise, false.
- processAffected
- Boolean
true to indicate that the affected objects will be processed; otherwise, false.
Returns
An XmlaResultCollection containing the results of the command(s).
Applies to
ExecuteCaptureLog(Boolean, Boolean)
Executes the contents of the capture log on the server, and indicates whether execution will be in a transactional and/or parallel mode. Affected objects will not be processed.
public Microsoft.AnalysisServices.XmlaResultCollection ExecuteCaptureLog (bool transactional, bool parallel);
member this.ExecuteCaptureLog : bool * bool -> Microsoft.AnalysisServices.XmlaResultCollection
Public Function ExecuteCaptureLog (transactional As Boolean, parallel As Boolean) As XmlaResultCollection
Parameters
- transactional
- Boolean
true to indicate that the capture log will be executed within a transaction; otherwise, false.
- parallel
- Boolean
true to indicate that the capture log entries will be executed in parallel; otherwise, false.
Returns
An XmlaResultCollection containing the results of the command(s).