MajorObject.Drop Method

Definition

Overloads

Drop()

Removes current object and updates server.

Drop(DropOptions)

Removes current object and updates server using specified options.

Drop(DropOptions, XmlaWarningCollection)

Removes current object and updates server using specified options. Warnings resulting from drop operation are returned on the specified warnings object.

Drop(DropOptions, XmlaWarningCollection, ImpactDetailCollection)

Removes current object and updates server using specified options. Warnings resulting from drop operation are returned on the specified warnings variable and results for affected objects in operation are returned on specified impactResult variable.

Drop(DropOptions, XmlaWarningCollection, ImpactDetailCollection, Boolean)

Removes current object and updates server using specified options. Warnings resulting from drop operation are returned on the specified warnings variable and results for affected objects in operation are returned on specified impactResult variable.

Drop()

Removes current object and updates server.

public void Drop ();
member this.Drop : unit -> unit
Public Sub Drop ()

Applies to

Drop(DropOptions)

Removes current object and updates server using specified options.

public void Drop (Microsoft.AnalysisServices.DropOptions options);
member this.Drop : Microsoft.AnalysisServices.DropOptions -> unit
Public Sub Drop (options As DropOptions)

Parameters

options
DropOptions

Defines the behavior of the drop method on dependent objects.

Applies to

Drop(DropOptions, XmlaWarningCollection)

Removes current object and updates server using specified options. Warnings resulting from drop operation are returned on the specified warnings object.

public void Drop (Microsoft.AnalysisServices.DropOptions options, Microsoft.AnalysisServices.XmlaWarningCollection warnings);
member this.Drop : Microsoft.AnalysisServices.DropOptions * Microsoft.AnalysisServices.XmlaWarningCollection -> unit
Public Sub Drop (options As DropOptions, warnings As XmlaWarningCollection)

Parameters

options
DropOptions

Defines the behavior of the drop method on dependent objects.

warnings
XmlaWarningCollection

Specifies an XmlaWarningCollection variable to hold all resulting warnings from drop operation.

Applies to

Drop(DropOptions, XmlaWarningCollection, ImpactDetailCollection)

Removes current object and updates server using specified options. Warnings resulting from drop operation are returned on the specified warnings variable and results for affected objects in operation are returned on specified impactResult variable.

public void Drop (Microsoft.AnalysisServices.DropOptions options, Microsoft.AnalysisServices.XmlaWarningCollection warnings, Microsoft.AnalysisServices.ImpactDetailCollection impactResult);
member this.Drop : Microsoft.AnalysisServices.DropOptions * Microsoft.AnalysisServices.XmlaWarningCollection * Microsoft.AnalysisServices.ImpactDetailCollection -> unit
Public Sub Drop (options As DropOptions, warnings As XmlaWarningCollection, impactResult As ImpactDetailCollection)

Parameters

options
DropOptions

Defines the behavior of the drop method on dependent objects.

warnings
XmlaWarningCollection

Specifies an XmlaWarningCollection variable to hold all resulting warnings from drop operation.

impactResult
ImpactDetailCollection

Specifies an ImpactDetailCollection variable to hold results for all affected objects in current drop operation.

Applies to

Drop(DropOptions, XmlaWarningCollection, ImpactDetailCollection, Boolean)

Removes current object and updates server using specified options. Warnings resulting from drop operation are returned on the specified warnings variable and results for affected objects in operation are returned on specified impactResult variable.

public void Drop (Microsoft.AnalysisServices.DropOptions options, Microsoft.AnalysisServices.XmlaWarningCollection warnings, Microsoft.AnalysisServices.ImpactDetailCollection impactResult, bool analyzeImpactOnly);
member this.Drop : Microsoft.AnalysisServices.DropOptions * Microsoft.AnalysisServices.XmlaWarningCollection * Microsoft.AnalysisServices.ImpactDetailCollection * bool -> unit
Public Sub Drop (options As DropOptions, warnings As XmlaWarningCollection, impactResult As ImpactDetailCollection, analyzeImpactOnly As Boolean)

Parameters

options
DropOptions

Defines the behavior of the drop method on dependent objects.

warnings
XmlaWarningCollection

Specifies an XmlaWarningCollection variable to hold all resulting warnings from drop operation.

impactResult
ImpactDetailCollection

Specifies an ImpactDetailCollection variable to hold results for all affected objects in current drop operation.

analyzeImpactOnly
Boolean

If true, only the impact analysis is executed, otherwise drop operation is executed.

Applies to