MajorObject.Drop Method (DropOptions, XmlaWarningCollection, ImpactDetailCollection, Boolean)

 

Applies To: SQL Server (starting with 2016)

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.

Namespace:   Microsoft.AnalysisServices
Assembly:  Microsoft.AnalysisServices.Core (in Microsoft.AnalysisServices.Core.dll)

Syntax

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

Parameters

  • analyzeImpactOnly
    Type: System.Boolean

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

See Also

Drop Overload
MajorObject Class
Microsoft.AnalysisServices Namespace

Return to top