MajorObject.Drop Method (DropOptions, XmlaWarningCollection, ImpactDetailCollection)
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
)
public:
void Drop(
DropOptions options,
XmlaWarningCollection^ warnings,
ImpactDetailCollection^ impactResult
)
member Drop :
options:DropOptions *
warnings:XmlaWarningCollection *
impactResult:ImpactDetailCollection -> unit
Public Sub Drop (
options As DropOptions,
warnings As XmlaWarningCollection,
impactResult As ImpactDetailCollection
)
Parameters
options
Type: Microsoft.AnalysisServices.DropOptionsDefines the behavior of the drop method on dependent objects.
warnings
Type: Microsoft.AnalysisServices.XmlaWarningCollectionSpecifies an XmlaWarningCollection variable to hold all resulting warnings from drop operation.
impactResult
Type: Microsoft.AnalysisServices.ImpactDetailCollectionSpecifies an ImpactDetailCollection variable to hold results for all affected objects in current drop operation.
See Also
Drop Overload
MajorObject Class
Microsoft.AnalysisServices Namespace
Return to top