Aracılığıyla paylaş


Execute yöntemi (xmla)

Sends XML for Analysis (XMLA) commands to an instance of Microsoft SQL Server Analysis Services.Alma veya sunucuda veri güncelleştirme gibi veri aktarımı ilgili istekleri de buna dahildir.

Ad urn: schemas-microsoft-com: XML-analiz

soap eylemi "urn: schemas-microsoft-com: XML-analiz: Yürüt"

Sözdizimi

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

Öğe özellikleri

Özellikleri

Açıklama

Veri türü ve uzunluğu

Hiçbiri

Varsayılan değer

Hiçbiri

Önem düzeyi

0-1: Yalnızca bir kez oluşan ■ optional element.

Öğe ilişkiler

İlişki

Element

Üst öğe

Hiçbiri

Alt öğeler

Komut, parametreleri, Özellikler

Açıklamalar

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

Örnek

Aşağıdaki kod örneği, bir örnektir bir Execute yöntem çağrısı içeren bir çok boyutlu ifadeleri (mdx) deyim.

<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>