共用方式為


XML 元素 - 方法 - Discover

從 Analysis Services 的實例抓取相關資訊,例如可用資料庫的清單或特定物件的詳細資料。 使用 探索 方法取出的資料,取決於傳遞給它的參數值。

命名空間 urn:架構-microsoft-com: xml-分析

SOAP 動作 "urn:架構-microsoft-com: xml-分析:探索"

Syntax

  
<Discover>  
   <RequestType>...</RequestType>  
   <Restrictions>...</Restrictions>  
   <Properties>...</Properties>  
</Discover>  

元素特性

特性 描述
資料類型和長度 None
預設值 None
基數 0-1:只能出現一次的選擇性元素。

元素關聯性

關聯性 元素
父元素 None
子元素 屬性RequestType限制

備註

探索方法會要求實例和物件的相關中繼資料。 中繼資料是使用 XMLA 資料列 資料類型傳回的。

提示

如果您不熟悉 XML 命令,請在 Management Studio 的 [查詢] 工具列上按一下 [XMLA 查詢] 範本,以建立查詢並加入參數。

範例

在下列程式碼範例中,用戶端會傳送 探索 呼叫,以要求來自「艾德作品 DW 多維度2012範例 Analysis Services 資料庫的 cube 清單:

<Discover xmlns="urn:schemas-microsoft-com:xml-analysis">  
   <RequestType>MDSCHEMA_CUBES</RequestType>  
   <Restrictions>  
      <RestrictionList>  
         <CATALOG_NAME>Adventure Works DW Multidimensional 2012</CATALOG_NAME>  
      </RestrictionList>  
   </Restrictions>  
   <Properties>  
      <PropertyList>  
         <DataSourceInfo>Provider=MSOLAP;Data Source=local;</DataSourceInfo>  
         <Catalog>Adventure Works DW Multidimensional 2012</Catalog>  
         <Format>Tabular</Format>  
      </PropertyList>  
   </Properties>  
</Discover>