BAM 構成スキーマの変更
この構成ファイルは、構成ウィザードで自動的に作成されます。 サーバー名または他の構成情報を変更する場合、展開の完了後に、このファイルを手動で変更する必要があります。
Note
BAM 構成ファイルに加えた変更を反映するには、管理者が、現在展開している BAM 構成の展開を解除し、更新した BAMConfiguration.xml を展開する必要があります。
BAM 定義の展開解除の詳細については、「BAM 定義 の展開解除」を参照してください。 BAM 定義の展開の詳細については、「BAM 定義 の展開」を参照してください。
BAMConfiguration.xml ファイルに使用されているスキーマを次に示します。
<?xml version="1.0" encoding="utf-16" ?>
<xs:schema xmlns="urn:schemas-microsoft.com:BAM" targetNamespace="urn:schemas-microsoft.com:BAM" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="BAMConfiguration">
<xs:complexType>
<xs:sequence>
<xs:element name="DeploymentUnit" maxOccurs="unbounded" type="DeploymentUnit" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:complexType name="DeploymentUnit">
<xs:sequence>
<xs:element name="Property" maxOccurs="unbounded" type="Property" />
</xs:sequence>
<xs:attribute name="Name" type="xs:string" />
</xs:complexType>
<xs:complexType name="Property">
<xs:simpleContent>
<xs:extension base='xs:string'>
<xs:attribute name='Name' type='xs:NCName' />
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:schema>
BAM 構成スキーマに準拠した XML ファイルの例を次に示します。
<?xml version="1.0" encoding="utf-8" ?>
<BAM:BAMConfiguration xmlns:BAM='urn:schemas-microsoft.com:BAM' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
<DeploymentUnit Name="PrimaryImportDatabase">
<Property Name="ServerName">.</Property>
<Property Name="DatabaseName">BAMPrimaryImport</Property>
<Property Name="RTAWindow">60</Property>
<Property Name="RTATimeSlice">5</Property>
</DeploymentUnit>
<DeploymentUnit Name="StarSchemaDatabase">
<Property Name="ServerName">.</Property>
<Property Name="DatabaseName">BAMStarSchema</Property>
</DeploymentUnit>
<DeploymentUnit Name="AnalysisDatabase">
<Property Name="ServerName">localhost</Property>
<Property Name="DatabaseName">BAMAnalysis</Property>
</DeploymentUnit>
<DeploymentUnit Name="ArchivingDatabase">
<Property Name="ServerName">.</Property>
<Property Name="DatabaseName">BAMArchiving</Property>
</DeploymentUnit>
<DeploymentUnit Name="CubeUpdateDTS">
<Property Name="ConnectionTimeOut">15</Property>
<Property Name="UseEncryption">1</Property>
<Property Name="OwnerPassword">myOwnerPassword</Property>
<Property Name="UserPassword">myUserPassword</Property>
</DeploymentUnit>
<DeploymentUnit Name="DataMaintenanceDTS">
<Property Name="ConnectionTimeOut">15</Property>
<Property Name="UseEncryption">1</Property>
<Property Name="OwnerPassword">myOwnerPassword</Property>
<Property Name="UserPassword">myUserPassword</Property>
</DeploymentUnit>
</BAM:BAMConfiguration>