共用方式為


Server 元素 (DTA)

包含您要微調的資料庫所在之伺服器的識別資訊。

語法

<DTAInput>
    <Server>
    ...code removed here...
    </Server>

元素特性

特性

描述

資料類型和長度

無。

預設值

無。

出現次數

每個 DTAInput 元素需要這個元素一次。

元素關聯性

備註

DTAInput 元素只能指定一個 Server 元素。在 DTA XML 結構描述中,這個元素是 ServerDetailsTypecomplexType 名稱。請勿混淆這個 Server 元素和 Configuration 元素的子元素。如需詳細資訊,請參閱<組態的 Server 元素 (DTA)>。

範例

下列範例會示範如何在 SERVER001 上指定 AdventureWorks2008R2 資料庫中的 Sales.SalesPerson 資料表:

<Server>
  <Name>SERVER001</Name>
  <Database>
    <Name>AdventureWorks2008R2</Name>
    <Schema>
      <Name>Sales</Name>
      <Table>
        <Name>SalesPerson</Name>
      </Table>
    </Schema>
  </Database>
</Server