Yöntem (XMLA) çalıştırın.
Sends XML for Analysis (XMLA) commands to an instance of Microsoft SQL Server Analysis Services.Bu, alma veya sunucuda veri güncelleştirme gibi veri aktarımı ile ilgili istekleri içerir.
Ad alanı urn: schemas-microsoft - com:xml - analiz
SOAP eylem "urn: schemas-microsoft - com:xml - çözümlemesi: Yürüt"
<Execute>
<Command>...</Command>
<Properties>...</Properties>
<Parameters>...</Parameters>
</Execute>
Öğe özellikleri
Özellik |
Açıklama |
---|---|
Veri türü ve uzunluğu |
None |
Varsayılan değer |
None |
Önem düzeyi |
0-1: Bir kez ve yalnızca bir kez oluşan isteğe bağlı bir öğe. |
Remarks
The Execute yöntem executes XMLA commands provided in the Command element and returns any resulting data using either the XMLA satır kümesi data type (for tabular result sets) or the XMLA MDDataSet data type (for multidimensional result sets.)
Example
Aşağıdaki kod örneği, örneğidir bir Execute yöntem çağrısı bir çok boyutlu deyimler (MDX) deyim içerir.
<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>
See Also