Modification du schéma de configuration BAM
L'Assistant Configuration crée ce fichier de configuration automatiquement. Vous devrez le modifier manuellement si vous changez vos noms de serveur ou d'autres informations de configuration une fois le déploiement terminé.
Notes
Pour activer les modifications qu'ils apportent au fichier de configuration BAM, les administrateurs doivent d'abord annuler le déploiement de la configuration BAM actuelle avant de déployer le fichier BAMConfiguration.xml mis à jour.
Pour plus d’informations sur le déploiement d’une définition BAM, consultez Annuler le déploiement de définitions BAM. Pour plus d’informations sur le déploiement d’une définition BAM, consultez Déploiement de définitions BAM.
Ce qui suit est le schéma utilisé pour le fichier 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>
Le fichier suivant est un exemple de fichier XML conforme au schéma de configuration BAM.
<?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>
Voir aussi
Schéma de configuration BAM
Recommandations de sécurité pour les services BAM
BAM (Business Activity Monitoring)