Udostępnij za pośrednictwem


wykonać metoda (XMLA)

Sends XML for Analysis (XMLA) commands to an instance of Microsoft SQL Server Analysis Services.Dotyczy to także żądań dotyczących przesyłania danych, takich jak pobieranie lub aktualizowanie danych na serwerze.

Obszar nazw urn: schemas-microsoft - com:xml - analiza

Akcja SOAP "urn: schemas-microsoft - com:xml - analizy: wykonać"

<Execute>
   <Command>...</Command>
   <Properties>...</Properties>
   <Parameters>...</Parameters>
</Execute>

Właściwości elementu

Charakterystyka

Description

Typ danych i długość

None

Wartość domyślna

None

Relacja

0-1: Opcjonalnego elementu, który występuje tylko raz i tylko raz.

Relacje elementu

Relacja

Element

Element nadrzędny

None

Elementy podrzędność

Polecenie, Parametry, Właściwości

Remarks

The Execute metoda executes XMLA commands provided in the Command element and returns any resulting data using either the XMLA zestaw wierszy data type (for tabular result sets) or the XMLA MDDataSet data type (for multidimensional result sets.)

Example

Poniższy przykładowy kod jest przykładem Execute Wywołanie metoda, który zawiera instrukcję SELECT Multidimensional Expressions (MDX).

<Execute xmlns="urn:schemas-microsoft-com:xml-analysis">
   <Command>
      <Statement>
         SELECT [Measures].MEMBERS ON COLUMNS FROM [Adventure Works]
      </Statement>
   </Command>
   <Properties>
      <PropertyList>
         <DataSourceInfo>Provider=MSOLAP;Data Source=local;</DataSourceInfo>
         <Catalog>Adventure Works DW</Catalog>
         <Format>Multidimensional</Format>
         <AxisFormat>ClusterFormat</AxisFormat>
      </PropertyList>
   </Properties>
</Execute>